Edhesive 2.8 Code Practice: question 2 answers
Answers
Answered by
3
Answer:
Edhesive LLC provides an online AP computer science course. Its AP computer science course includes a year-long curriculum that includes video and interactive lessons, and automatically graded assessments. Edhesive LLC was formerly known as Amplify MOOC. The company was incorporated in 2015 and is based in New York, New York.
Answered by
8
Answer:
lat = input("Enter lats: ")
lon = input("Enter lons: ")
lat_list = [float(s) for s in lat.split(',')]
lon_list = [float(s) for s in lon.split(',')]
print ("Farthest North = " + str(max (lat_list)))
print ("Farthest West = " + str (max(lon_list)))
print ("Farthest South = " + str(min (lat_list)))
print ("Farthest East = " + str (min(lon_list)))
Explanation:
Similar questions