2.7code practice edhesive question 2

Answer:
lat = [40.59, 40.52, 40.621, 40.519, 40.56, 41.265, 40.61, 40.806, 41.259, 41.265, 41.264, 41.264, 41.259, 41.262, 41.263]
lon = [69.532, 69.419, 69.354, 69.263, 69.478, 70.805, 69.706, 70.331, 70.815, 70.823, 70.815, 70.81, 70.824, 70.811, 70.811]
print("Farthest north = " + str(max (lat)))
print("Farthest west = " + str(max (lon)))
print("Farthest south = " + str(min (lat)))
print("Farthest east = " + str(min (lon)))
Explanation:
you are welcome