How to access list of tuples in Python - Google Search

PHOTO EMBED

Wed Mar 15 2023 19:51:16 GMT+0000 (Coordinated Universal Time)

Saved by @bertill #python

#List of Tuples
list_tuples =  [('Nagendra',18),('Nitesh',28),('Sathya',29)]

#To print the list of tuples using for loop you can print by unpacking them
for name,age in list_tuples:
  print(name,age)

#To print with enumerate--->enumerate is nothing but gives the index of the array.
for index,(name,age) in list_tuples:
  #print using fstring
  print(f'My name is {name} and age is {age} and index is {index}')
  #print using .format
  print('My name is {n} and age is {a} and index is {i}'.format(n=name,a=age,i=index))
 
content_copyCOPY

https://www.google.com/search?newwindow