I am questioning of how I can create two variables containing two of the four input values. They are lat1 long1 lat2 long2 to calculate distance. Here is the code:
from geopy import distance
coords_1 = (lat1, long1)
coords_2 = (lat2, long2)
print (distance.distance(coords_1, coords_2).km)
Imagining that I would execute the code as
python3.9 distance.py -1 -28 -4 -32
where -1=lat1, -28=long1, -4=lat2, -32=long2.
Then, how can I include the input coordinates on the four variables?