''' Author: Day 16 Classwork - Problem #2 Calculating the average speed during a trip requires knowing: The total distance traveled and, The amount of time it took to cover it In this problem the trip data is stored in a dictionary with two keys: "distance" "time" For scientific purposes the information has been stored in meters and seconds. Reassemble the lines and complete the code to calculate the average speed. Some of the pieces are missing. ''' distance_in_kilometers = trip_data["____"]/1000 trip_data = {"distance":123000.0, "time":14000.0} print(average_speed_in_mph) average_speed_in_mph = ____ / time_in_hours time_in_hours = trip_data["____"]/____ ____ = distance_in_kilometers / 1.6