Help a Noob... Pls explain the process 😉 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Help a Noob... Pls explain the process 😉

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.

6th Jul 2022, 10:23 AM
Kavaniih
Kavaniih - avatar
2 Answers
+ 3
In order to solve the problem, you first need to know the formula for rate, distance, and time. (**note rate is also know as speed**) Rate * Time = Distance Miles / Hour * Hour = Miles Time = Distance / Rate Step One: Create 3 Variables distance = 7425 rate = 550 time = distance / rate Step Two: Print Result ***Optional*** Turn time into a float (decimal) using float function float() print(time) or print(float(time)) Step Three: Run! Results should say 13.5.
6th Jul 2022, 1:52 PM
The Warlord
The Warlord - avatar
+ 2
time = speed / distance Speed is given in hour so you have to convert in miles / minutes.
6th Jul 2022, 10:48 AM
A͢J
A͢J - avatar