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)))

--------------------------------------------------------------------------------

(Using Python) heres my code, anyway I can fix the error i

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!