Advertisements
Advertisements
प्रश्न
What is a List in Python?
Advertisements
उत्तर
A list in Python is known as a “sequence data type” like strings. It is an ordered collection of values enclosed within square brackets [ ]. Each value of a list is called an element.
APPEARS IN
संबंधित प्रश्न
Let list1 = [2,4,6,8,10], then print(List1[-2]) will result in ______
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?
The keys in Python, the dictionary is specified by ______
How will you access the list elements in reverse order?
Differentiate del with remove( ) function of List.
Explain the difference between del and clear( ) in the dictionary with an example.
What is the difference between List and Dictionary?
What is the purpose of range( )? Explain with an example.
