Python Tutorials · Python Tuples

Access Tuples

Learn all about Access Tuples in this comprehensive tutorial.

5 min read beginner
  • 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:

python
Note: Note: The first item has index 0.

Negative Indexing

Negative indexing means start from the end.

-1 refers to the last item, -2 refers to the second last item etc.

python

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.

python
Note: Note: The search will start at index 2 (included) and end at index 5 (not included).
Note: Remember that the first item has index 0.

By leaving out the start value, the range will start at the first item:

python

By leaving out the end value, the range will go on to the end of the tuple:

python

Range of Negative Indexes

Specify negative indexes if you want to start the search from the end of the tuple:

python

Check if Item Exists

To determine if a specified item is present in a tuple use the in keyword:

python

Module quiz

2 questions
1

Which of the following is true about Access Tuples?

2

What is the most common pitfall when working with Access Tuples?

Answer all questions to submit.