Advertisements
Advertisements
प्रश्न
What is a Tuple? Give an example.
उत्तर
A tuple is a comma-separated sequence of values surrounded by parentheses. A tuple is similar to a list. The difference between the two is that you cannot change the elements of a tuple once it is assigned whereas, in a list, elements can be changed.
Example colour = (‘red’, ‘blue’, ‘Green’)
APPEARS IN
संबंधित प्रश्न
The data structure which is a mutable ordered sequence of elements is called ______
A sequence of immutable objects is called ______
Bundling two values together into one can be considered as ______
What is a List? Give an example.
What is a List? Why List can be called as Pairs. Explain with a suitable example?
What are the different ways to access the elements of a list? Give example.
Identify Which of the following is List, Tuple, and class?
arr [1, 2, 34]
Identify Which of the following is List, Tuple, and class?
arr (1, 2, 34)
Identify Which of the following is List, Tuple, and class?
day = (‘sun’, ‘mon’, ‘Tue, ‘wed’)
Identify Which of the following is List, Tuple, and class?
x = [2, 5, 6.5, [5, 6], 8.2]