I see that zip(<>) in python does not take duplicates. Is there a way to make it consider duplicates? The following are my two lists:
[933, 933, 933, 933, 933, 1129, 1129, 1129, 1129]
[4139, 6597069777240, 10995116284808, 32985348833579, 32985348838375, 1242, 2199023262543, 6597069771886, 6597069776731]
When I am trying to loop the lists simultaneously using zip(), only(933, 4139) and (1129, 1242) are being considered. Is there a way(using zip) to avoid this and make it consider all the values in the lists.
Thanks in advance
- List item