I have two lists:
f= ['A', 'A']
d = [(2096, 222, 2640), (1494, 479, 1285)]
I want a list!
LL = [('A', 2096, 222, 2640), ('A', 1494, 479, 1285)]
I am close with dic = zip(f,d)
but this give me this:
[('A', (2096, 222, 2640)), ('A', (1494, 479, 1285))]
How can i get LL?