Question: (Using Python) heres my code, anyway I can fix the error i have? --------------------------------------------------------------------------- def steps_to_miles(user_steps, step_length): starting_step = 18.315 mile = steps / 2000
(Using Python)
heres my code,
anyway I can fix the error i have?
---------------------------------------------------------------------------
def steps_to_miles(user_steps, step_length): starting_step = 18.315 mile = steps / 2000 mile = (mile * step_length) / (starting_step) return mile
if __name__ == '__main__': steps = int(input()) step_length = float(input()) print('{:.2f}'.format(steps_to_miles(steps,step_length)))
--------------------------------------------------------------------------------

steps_to_miles(1199, 20) Traceback (most recent call last): NameError: name steps is not defined 4: Unit test A steps_to_miles(11199, 25) Traceback (most recent call last): NameError: name 'steps! is not defined
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
