Get the answers you need at Westonci.ca, where our expert community is always ready to help with accurate information. Join our Q&A platform to get precise answers from experts in diverse fields and enhance your understanding. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform.

PLEASE HELPPPPPPP

Flight Time

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.


PLEASE HELPPPPPPP Flight Time 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 P class=

Sagot :

Answer:

Time taken by plane = 13.5 hour

Explanation:

Given:

Total distance cover by plane = 7,425 miles

Average speed of plane = 550 miles per hour

Find:

Time taken by plane

Computation:

Time taken = Distance / Speed

Time taken by plane = Total distance cover by plane / Average speed of plane

Time taken by plane = 7,425 / 550

Time taken by plane = 13.5 hour

The calculation and output the total flight time in hours is represented as follows:

def time(distance, speed):

  time = distance / speed  

  print(time)

time(7425, 550)

speed = distance / time

time = distance / speed

We used function in python  to determine the flight time. The function name is  time.

The arguments are distance and speed.

Then we declare the mathematical formula to calculate the time of flight.

The we print the time of flight.

The function is called with its arguments, distance and speed.

The answer should be 13.5 hours and the output should be 13.5.

learn more ; https://brainly.com/question/23746890?referrer=searchResults

View image vintechnology