How to update each item value in a list of tuples with Python

1 Answer

0 votes
lst_tpl = [(8, 3), (2, 9), (6, 7), (1, 5)] 

result = [tuple(val * 2 for val in i) for i in lst_tpl] 
  
print(result) 



'''
run:

[(16, 6), (4, 18), (12, 14), (2, 10)]

'''

 



answered Dec 18, 2019 by avibootz
...