As an example, I have the following lists:
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 would like to receive as an output, the first element put as an example:
[('#12908069', '85028', (9.09, 9.09), 'Zone 3'), ...]
How do I get zip() to add an extra element for each tuple from list c ?