- 1
I can't solve the flight project. I need a lil help
7 Answers
+ 5
formula:
speed = path / time
given:
path = 7425
speed = 550
search:
time
approach:
* solve formula for time
* insert given values and output result
+ 1
The task asks for ***time***
The formula gives speed. We need to solve it so it is like
Time = ...
+ 1
Ash đđ€·đŒââïž
+ 1
[BusyTheseDays]
It's 8. Flight Time, Python for Beginners :)
0
speed = path / time
path = 7425
speed = 550
I followed Lisa procedure but I'm stuck.[BusyTheseDays]
0
ۧÙÙۧ
0
distance=7425
speed=550
time=distance/speed
min=time/60
hour=min/60
print(hour)