IDNLearn.com: Your go-to resource for finding expert answers. Get timely and accurate answers to your questions from our dedicated community of experts who are here to help you.
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
We appreciate your contributions to this forum. Don't forget to check back for the latest answers. Keep asking, answering, and sharing useful information. Accurate answers are just a click away at IDNLearn.com. Thanks for stopping by, and come back for more reliable solutions.