- 4
Python code (pls help)
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.
2 odpowiedzi
+ 2
Use basic physics and math and then impliment in any coding language
+ 2
Distance / speed gives you a time (v = d/t, so t = d/v)
The result unit depends on the distance and speed unit.