Table of Contents
A tuple in Python is very similar to lists except for one major difference, the items inside are unchangeable, in other words immutable. What this means in practice is that once defined, the list cannot be modified.
Creating a Tuple
Creating a tuple is very similar to creating a list:
PYTHONfruits = ("apples", "bananas", "grapes")
print(fruits)
BASH('apples', 'bananas', 'grapes')
While lists are defined using brackets, tuples use parenthesis.
Accessing items in a Tuple
You can access an item in a tuple in the same way you do with lists:
PYTHONfruits = ("apples", "bananas", "grapes")
print(fruits[1])
BASHbananas
You can also use negative indexes:
PYTHONfruits = ("apples", "bananas", "grapes")
print(fruits[-1])
BASHgrapes
Looping through a Tuple
Here is how to iterate through a tuple:
PYTHONfruits = ("apples", "bananas", "grapes")
for fruit in fruits:
print(fruit)
BASHapples
bananas
grapes
Check if Item Exists in Tuple
You can check if an item exists in a tuple like this:
PYTHONfruits = ("apples", "bananas", "grapes")
print("apples" in fruits)
print("strawberries" in fruits)
BASHTrue
False
Tuple Length
Get the length of a tuple using the built-in len
function:
PYTHONfruits = ("apples", "bananas", "grapes")
print(len(fruits))
BASH3
Combine Multiple Tuples
Even though tuples are immutable, you can still combine them to create a third entirely new tuple. This is how:
PYTHONfruits = ("apples", "bananas", "grapes")
vegetables = ("carrots", "peas", "lettuce")
food = fruits + vegetables
print(food)
BASH('apples', 'bananas', 'grapes', 'carrots', 'peas', 'lettuce')
Converting a Tuple into a List
When the situation arises that you indeed must make changes to the tuple, Python gives you the option to convert it to a list instead. Use the list()
function to do just that:
PYTHONfruits = ("apples", "bananas", "grapes")
fruits_list = list(fruits)
print(fruits_list)
BASH['apples', 'bananas', 'grapes']
- Getting Started with TypeScript
- Managing PHP Dependencies with Composer
- Getting Started with Svelte
- How to deploy a .NET app using Docker
- How to build a Discord bot using TypeScript
- How to deploy a Deno app using Docker
- How to deploy an Express app using Docker
- How to Scrape the Web using Node.js and Puppeteer
- Getting Started with Moment.js
- Learn how to build a Slack Bot using Node.js
- Creating a Twitter bot with Node.js
- Setting Up Stylus CSS Preprocessor