I have a list of tuples:
my_lst = [('2.0', '1.01', '0.9'), ('-2.0', '1.12', '0.99')]
I'm looking for a solution to unpack each value so that it prints out a comma separated line of values:
2.0, 1.01, 0.9, -2.0, 1.12, 0.99
The catch is, the lenght of lists vary.