How to add custom column to a list of tuple in Python

1 Answer

0 votes
lst = [(1, 2), (3, 4), (5, 6)] 
  
toAdd = [43, 76, 99] 
  
lst = [sub + (val, ) for sub, val in zip(lst, toAdd)] 
  
print(lst)  



'''
run:

[(1, 2, 43), (3, 4, 76), (5, 6, 99)]

'''

 



answered Jun 18, 2020 by avibootz

Related questions

1 answer 168 views
1 answer 223 views
...