Answers for "loop through list of tuples"

0

loop through list of tuples python

list_of_tuples = [("Betty", 45), ("John" , 84), ("Malik" , 34), ("Jose" , 20)]


for index, tuple in enumerate(list_of_tuples):
  
	element_one = tuple[0]
	element_two = tuple[1]

	print('Index:', index, element_one, element_two)

>>> Index: 0 Betty 45
	Index: 1 John 84
	Index: 2 Malik 34
	Index: 3 Jose 20
Posted by: Guest on May-17-2021
0

python array of tuples for loop

coordinates = [(0,0),(0,3),(1,0),(1,2),(1,3)]

for (i,j) in coordinates:
    print i,j
Posted by: Guest on May-21-2021

Code answers related to "loop through list of tuples"

Python Answers by Framework

Browse Popular Code Answers by Language