Answer:
lat = [15.18, 15.11, 15.12, 15.12, 15.08, 14.95, 14.87, 14.81, 14.81, 14.75, 14.73, 14.68, 14.55]
lon = [-62.942, -62.807, -62.622, -62.499, -62.438, -62.372, -62.352, -62.318, -62.321, -62.201, -62.150, -62.154, -61.915]
print("Farthest north is " + str(max(lat)))
print ("Farthest west is " + str(min(lon)))
print ("Farthest south is " + str(min(lat)))
print("Farthest east is " + str(max(lon)))
Step-by-step explanation:
trust me bro