Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A pedometer treats walking 2,000 steps as walking 1 mile. Write a program whose input is the number of steps, and whose output is the

A pedometer treats walking 2,000 steps as walking 1 mile. Write a program whose input is the number of steps, and whose output is the miles walked.

Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('{:.2f}'.format(your_value))

Ex: If the input is:

5345 

the output is:

2.67 

Your program must define and call the following function. The function should return the amount of miles walked. def steps_to_miles(user_steps)

This is what I have so far:

def steps_to_miles(steps): mile = steps/2000 return mile def main(): steps = int(input()) user_steps = steps_to_miles(steps) if __name__ == '__main__': print('{:.2f}'.format(steps_to_miles(user_steps)))

But my program does not produce any output for inputs 5345 and 10000 when I submit it on zybooks.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transport Operations

Authors: Allen Stuart

2nd Edition

978-0470115398, 0470115394

Students also viewed these Programming questions

Question

Explain the OD stages of unfreezing, changing, and refreezing.

Answered: 1 week ago