Advertisements
Advertisements
Question
What are the different ways to access the elements of a list? Give example.
Solution
List is constructed by placing expressions within square brackets separated by commas. An example for List is [10, 20].
The elements of a list can be accessed in two ways. The first way is via our familiar method of multiple assignments, which unpacks a list into its elements and binds each element to a different name.
1st: = [10, 20]
x, y: = 1st
In the above example, x will become 10 and y will become 20.
A second method for accessing the elements in a list is by the element selection operator, also expressed using square brackets. Unlike a list literal, a square–bracket expression directly following another expression does not evaluate a list value but instead selects an element from the value of the preceding expression.
1st [0]
10
1st [1]
20
APPEARS IN
RELATED QUESTIONS
The data structure which is a mutable ordered sequence of elements is called ______
Bundling two values together into one can be considered as ______
Which of the following allows to name the various parts of a multi-item object?
What is a List? Give an example.
What is a Tuple? Give an example.
What is a List? Why List can be called as Pairs. Explain with a suitable 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?
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]