Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

iterating over tuples in python

thistuple = ("apple", "banana", "cherry")
for x in thistuple:
  print(x)
 
PREVIOUS NEXT
Tagged: #iterating #tuples #python
ADD COMMENT
Topic
Name
6+7 =