Is there a better way to iterate over two lists, getting one element from each list for each iteration? [duplicate]

This is as pythonic as you can get:

for lat, long in zip(Latitudes, Longitudes):
    print(lat, long)

Leave a Comment