Advertisements
Advertisements
Question
Identify Which of the following is List, Tuple, and class?
x = [2, 5, 6.5, [5, 6], 8.2]
Solution
x = [2, 5, 6.5, [5, 6], 8.2] - List
APPEARS IN
RELATED QUESTIONS
The data structure which is a mutable ordered sequence of elements is called ______
A sequence of immutable objects is called ______
What is a List? Give an example.
What is a Tuple? Give an 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?
student [rno, name, mark]
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?
employee [eno, ename, esal, eaddress]