Access List Items
Learn all about Access List Items in this comprehensive tutorial.
- •List items are indexed and you can access them by referring to the index number:
- •To determine if a specified item is present in a list use the in keyword:
Access Items
List items are indexed and you can access them by referring to the index number:
Negative indexing means start from the end
-1 refers to the last item, -2 refers to the second last item etc.
You can specify a range of indexes by specifying where to start and where to end the range.
When specifying a range, the return value will be a new list with the specified items.
By leaving out the start value, the range will start at the first item:
By leaving out the end value, the range will go on to the end of the list:
Specify negative indexes if you want to start the search from the end of the list:
Check if Item Exists
To determine if a specified item is present in a list use the in keyword:
Module quiz
2 questionsWhich of the following is true about Access List Items?
What is the most common pitfall when working with Access List Items?
Answer all questions to submit.