Advertisements
Advertisements
प्रश्न
If List = [17,23,41,10] then List.append(32) will result ______
पर्याय
[32,17,23,41,10]
[17,23,41,10,32]
[10,17,23,32,41]
[41,32,23,17,10]
उत्तर
If List = [17,23,41,10] then List.append(32) will result [17,23,41,10,32].
APPEARS IN
संबंधित प्रश्न
Pick odd one in connection with collection data type?
Which of the following function is used to count the number of elements in a list?
What will be the result of the following Python code?
S = [x**2 for x in range(5)]
print(S)
Which of the following statement is not correct?
Let setA = {3,6,9}, setB = {1,3,9}. What will be the result of the following snippet?
print(setA|setB)
The keys in Python, the dictionary is specified by ______
Write a short note about sort( ).
What will be the output of the following code?
list = [2**x for x in range(5)]
print(list)
What is the difference between List and Dictionary?
What is the purpose of range( )? Explain with an example.