I have 2 lists: latitude and longitude, which I'd like to format into an object in the following format:
coordinates = (-33.89419, 151.19449), (-33.66061, 151.25468), ...
How do I go about formatting this? It has to be the first latitude item with the first longitude items, and so forth. Thank you.
latitude
-33.89419,
-33.66061,
-33.89875
longitude
151.19449,
151.25468,
151.28507,
151.21634
Many thanks.