|
|
|
@ -48,7 +48,7 @@ if (choice == '2'):
|
|
|
|
elif (choice == '3'):
|
|
|
|
elif (choice == '3'):
|
|
|
|
|
|
|
|
|
|
|
|
for i in list(range(3)):
|
|
|
|
for i in list(range(3)):
|
|
|
|
lat = input("\nType your latitude (South is negative):"): ")
|
|
|
|
lat = input("\nType your latitude (South is negative): ")
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
latitude = float(lat)
|
|
|
|
latitude = float(lat)
|
|
|
|
print(latitude)
|
|
|
|
print(latitude)
|
|
|
|
@ -57,7 +57,7 @@ elif (choice == '3'):
|
|
|
|
print("Not a number!")
|
|
|
|
print("Not a number!")
|
|
|
|
|
|
|
|
|
|
|
|
for i in list(range(3)):
|
|
|
|
for i in list(range(3)):
|
|
|
|
long = input("\nType your longitude (West is negative):"): ")
|
|
|
|
long = input("\nType your longitude (West is negative): ")
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
longitude = float(long)
|
|
|
|
longitude = float(long)
|
|
|
|
print(longitude)
|
|
|
|
print(longitude)
|
|
|
|
|