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.

2nd Sep 2022, 10:58 AM
Arnes Sfo
Arnes Sfo - avatar
12 Answers
0
Hi! And what is your question?
2nd Sep 2022, 11:01 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 2
your attempt first then we help
2nd Sep 2022, 11:05 AM
MATOVU CALEB
MATOVU CALEB - avatar
+ 2
you wrote that you tried. show us this
2nd Sep 2022, 12:54 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 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?
2nd Sep 2022, 1:10 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 1
Distance : 7425 Speed: 550 Time:?
3rd Sep 2022, 10:17 AM
Leovinel
Leovinel - avatar
+ 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")
3rd Sep 2022, 12:16 PM
Muhammad Rukban Ali Yousaf
Muhammad Rukban Ali Yousaf - avatar
0
I've tried but it makes my brain spin so dizzy
2nd Sep 2022, 11:17 AM
Arnes Sfo
Arnes Sfo - avatar
0
Help me
2nd Sep 2022, 11:17 AM
Arnes Sfo
Arnes Sfo - avatar
0
Distance = 7425 Speed =550 Total flight time = Distance/Speed
3rd Sep 2022, 11:18 AM
M.Farhan J
M.Farhan J - avatar
0
Hi guys
3rd Sep 2022, 12:30 PM
hailemikael abebayehu walle
hailemikael abebayehu walle - avatar
0
print(7425/550)
3rd Sep 2022, 1:02 PM
ALI Moussa Kadjalla
ALI Moussa Kadjalla - avatar
0
13.5 hrs takes to reach the destination.
4th Sep 2022, 7:15 AM
Ashwin Kumar
Ashwin Kumar - avatar