You need to calculate the flight time of an upcoming trip. You are flying from LA to Sydney, covering a distance of 7425 miles, | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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

3rd Apr 2021, 7:37 AM
लमाओ NOOB
लमाओ NOOB - avatar
3 Answers
+ 1
7425/550
3rd Apr 2021, 7:40 AM
Namit Jain
Namit Jain - avatar
0
Thank you
3rd Apr 2021, 7:43 AM
लमाओ NOOB
लमाओ NOOB - avatar
0
#your code goes here distance = 7425; speed = 550; time = distance / speed; print(time)
25th Apr 2021, 9:51 AM
Jackson Kairani Maina
Jackson Kairani Maina - avatar