0
Help me
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.
12 Answers
0
Hi! And what is your question?
+ 2
your attempt first then we help
+ 2
you wrote that you tried. show us this
+ 2
Hint: You decided to take a bike trip and left Jakarta City for Karawang City. the distance between cities is 48 miles. your average speed is 13 mph. in what time will you achieve your goal?
+ 1
Distance : 7425
Speed: 550
Time:?
+ 1
#code in python
Time = float()
# To output result in hours. 13.5 hours
Time = 7425 / 550
print(float(Time), "hours")
# To output result in seconds. 48600 seconds
Time = (7425 / 550) * 60 *60
print(float(Time), "seconds")
0
I've tried but it makes my brain spin so dizzy
0
Help me
0
Distance = 7425
Speed =550
Total flight time = Distance/Speed
0
Hi guys
0
print(7425/550)
0
13.5 hrs takes to reach the destination.