 Tuples
Tuples
A tuple is like a list but immutable β once created, its contents cannot be changed.
They're useful for grouping values that should stay fixed, such as coordinates (x, y), RGB colors (255, 0, 0), or other constant data.
Defining a Tuple
You define a tuple using parentheses (()) instead of square brackets:
coordinates = (10, 20)
You can also create a tuple without parentheses: x = 1, 2, 3 β Python understands the comma means "tuple".
Immutability
Tuples cannot be modified β you can't add, remove, or change values.
Trying to do so raises a TypeError.
This makes them ideal for fixed configurations, constants, or safe return values from functions.
Accessing and Unpacking Tuples
Like lists, tuples use indexes starting at 0.
For example, colors[0] is "red", and colors[-1] is "blue".
Tuples also support unpacking β assigning values to variables in one step:
x, y = (10, 20) sets x = 10 and y = 20.
This is especially useful when functions return multiple values.
Summary
- Tuples store multiple values, like lists β but are immutable;
- Use parentheses or commas to define them;
- Access items by index β just like lists;
- Once created, tuples can't be changed;
- Use them when you need fixed, reliable data.
Thanks for your feedback!
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you show more examples of defining tuples in Python?
What happens if I create a tuple with just one element?
When should I use a tuple instead of a list?
Awesome!
Completion rate improved to 5 Tuples
Tuples
Swipe to show menu
A tuple is like a list but immutable β once created, its contents cannot be changed.
They're useful for grouping values that should stay fixed, such as coordinates (x, y), RGB colors (255, 0, 0), or other constant data.
Defining a Tuple
You define a tuple using parentheses (()) instead of square brackets:
coordinates = (10, 20)
You can also create a tuple without parentheses: x = 1, 2, 3 β Python understands the comma means "tuple".
Immutability
Tuples cannot be modified β you can't add, remove, or change values.
Trying to do so raises a TypeError.
This makes them ideal for fixed configurations, constants, or safe return values from functions.
Accessing and Unpacking Tuples
Like lists, tuples use indexes starting at 0.
For example, colors[0] is "red", and colors[-1] is "blue".
Tuples also support unpacking β assigning values to variables in one step:
x, y = (10, 20) sets x = 10 and y = 20.
This is especially useful when functions return multiple values.
Summary
- Tuples store multiple values, like lists β but are immutable;
- Use parentheses or commas to define them;
- Access items by index β just like lists;
- Once created, tuples can't be changed;
- Use them when you need fixed, reliable data.
Thanks for your feedback!