“como itera tupla em python” Respostas de código

como itera tupla em 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

loop python para uma tupla

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

iterando sobre tuplas em python

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

Respostas semelhantes a “como itera tupla em python”

Perguntas semelhantes a “como itera tupla em python”

Mais respostas relacionadas para “como itera tupla em python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código