Tuple in Python Tutorial |Tuple topic Explained In Python | Data Science Tutorial | Python Tutorial

Publié le: 01 janvier 1970
sur la chaîne: Amit Makode
8
5

Explain In Python, Tuple is another way to store a bunch of items together, just like a list. But there's one big difference: once you create a tuple, you can't change what's inside it. It's like a sealed bag - once you put things in, you can't take them out or add new things.

So, why use a tuple instead of a list? Well, tuples are handy when you want to make sure that the data you're storing doesn't accidentally get changed. For example, if you have the coordinates of a point (x, y), you might use a tuple because you wouldn't want those coordinates to change.

Here's how you make a tuple in Python:

python
Copy code
my_tuple = (1, 2, 3)
And you can access the items in a tuple just like you do with a list:

python
Copy code
print(my_tuple[0]) # Outputs: 1


Sur cette page du site, vous pouvez voir la vidéo en ligne Tuple in Python Tutorial |Tuple topic Explained In Python | Data Science Tutorial | Python Tutorial durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Amit Makode 01 janvier 1970, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 8 fois et il a aimé 5 téléspectateurs. Bon visionnage!