Daily Coding CHALLENGE 61: Space week day 7

I feel lost.

After entering my python code, what is the next step to testing it?

How do I know if I passed the challenge?

def launch_fuel(payload):
f = payload/5
fuel = 0
while f>1:
fuel = fuel + f
f = f/5
else:
return fuel

use the Run the tests button

image

1 Like