- 1
You need to calculate the flight time of an upcoming trip. You are flying from LA to Sydney, covering a distance of 7425 miles,
You need to calculate the flight time of an upcoming trip. You are flying from LA to Sydney, covering a distance of 7425 miles, the plane flies at an average speed of 550 miles an hour. Calculate and output the total flight time in hours. Hint The result should be a float. https://code.sololearn.com/Wp94K289CUSK/?ref=app
3 Answers
+ 1
7425/550
0
Thank you
0
#your code goes here
distance = 7425;
speed = 550;
time = distance / speed;
print(time)