“Opérations de tuple Python” Réponses codées

Opérations de tuple Python

# Membership test in tuple
my_tuple = ('a', 'p', 'p', 'l', 'e',)

# In operation
print('a' in my_tuple)
print('b' in my_tuple)

# Not in operation
print('g' not in my_tuple)
SAMER SAEID

Méthodes de tuple python

count(x) : Returns the number of times 'x' occurs in a tuple
index(x) : Searches the tuple for 'x' and returns the position of where it was first found
MayMau

tuple en python

#Tuple is immutable(which can't change)
fruits = ("Apple", "orange", "pears")
# You can check place, character in it but can't change
Ugly Unicorn

Réponses similaires à “Opérations de tuple Python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code