I have the following lists as an example:
a = ['#12908069', '#12906115', '#12904949', '#12904654', '#12904288', '#12903553']
b = ['85028,', '83646,', '77015,', '90011,', '91902,', '80203,']
c = ['9.09', '9.09', '1.81', '3.62', '1.81', '1.81', '9.09', '9.09', '1.81', '3.62', '1.81', '1.81']
d = ['Zone 3', 'Zone 3', 'Zone 2']
What I'd like to achieve as an output, the first item set zipped as an example:
[('#12908069', '85028', (9.09, 9.09), 'Zone 3'), ...]
How do I get zip()
to add an extra item for each tuple from list c
?