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:

Respuesta :

Answer:

input 5345 output 2.67

Explanation:

given data

treats walking step =  2,000

distance = 1 mile

solution

if we input here 5345

then there output will be 2.67

as

#Code.py

def steps_to_miles(user_steps):

return user_steps/2000

steps = int(input())

miles = steps_to_miles(steps)

print('%0.2f' % miles)

so as input 5345 output 2.67

Ver imagen DeniceSandidge

Answer:

steps = int(input("Enter the number of steps: "))

miles = steps / 2000

print('{:.2f}'.format(miles))

Explanation: