#23 Tuple in Python | Python Tuples in Hindi

Publié le: 03 septembre 2021
sur la chaîne: Python Learning Squad
79
12

#python #tuplesinpython #tuplesinhindi #learningsquad

In this video, you will learn about the tuples, tuples are immutable which means we can not change them.

Below is the code used:

a = (1,)
print(type(a))

mytup = (1,2,'sachin',1.56,True)
print(mytup)
print(len(mytup))

print(mytup[2])
print(mytup[-3])
print(mytup[1:4])
# d = (1,1,3,3,3,'sachin','sachin')
print(d.count('sachin'))

e = (2,3,'sachin','python')
print(e.index('python'))


Sur cette page du site, vous pouvez voir la vidéo en ligne #23 Tuple in Python | Python Tuples in Hindi durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Python Learning Squad 03 septembre 2021, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 79 fois et il a aimé 12 téléspectateurs. Bon visionnage!