Access Tuples
Learn all about Access Tuples in this comprehensive tutorial.
- •You can access tuple items by referring to the index number, inside square brackets:
- •Negative indexing means start from the end.
- •You can specify a range of indexes by specifying where to start and where to end the range.
- •Specify negative indexes if you want to start the search from the end of the tuple:
- •To determine if a specified item is present in a tuple use the in keyword:
Access Tuple Items
You can access tuple items by referring to the index number, inside square brackets:
Negative Indexing
Negative indexing means start from the end.
-1 refers to the last item, -2 refers to the second last item etc.
Range of Indexes
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 tuple 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 tuple:
Range of Negative Indexes
Specify negative indexes if you want to start the search from the end of the tuple:
Check if Item Exists
To determine if a specified item is present in a tuple use the in keyword:
Module quiz
2 questionsWhich of the following is true about Access Tuples?
What is the most common pitfall when working with Access Tuples?
Answer all questions to submit.