I need to save list of tuples into a string variable dynamically. Can you please help me?
Example:
lst = [('kol_id', '101152'), ('jnj_id', '7124166'), ('thrc_nm', 'VIR')]
Desirable output:
input_v1 = ('kol_id', '101152')
input_v2 = ('jnj_id', '7124166')
input_v3 = ('thrc_nm', 'VIR')