“Cómo iterar la tupla en Python” Código de respuesta

Cómo iterar la tupla en Python

#Loop Through the Index Numbers

#You can also loop through the tuple items by referring to their index number.

#Use the range() and len() functions to create a suitable iterable.

#Print all items by referring to their index number:

thistuple = ("apple", "banana", "cherry")
for i in range(len(thistuple)):
  print(thistuple[i])
Asif Iqbal Paracha

Python Loop a una tupla

t=(1,2,3)
for i in t:
  print i
Hilarious Hoopoe

iterando sobre tuples en Python

thistuple = ("apple", "banana", "cherry")
for x in thistuple:
  print(x)
Programmer of empires

Respuestas similares a “Cómo iterar la tupla en Python”

Preguntas similares a “Cómo iterar la tupla en Python”

Más respuestas relacionadas con “Cómo iterar la tupla en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código