“Operações de tupla de Python” Respostas de código

Operações de tupla de 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étodos de tupla 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

Tupla em 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

Respostas semelhantes a “Operações de tupla de Python”

Procure respostas de código populares por idioma

Procurar outros idiomas de código