Question: A pedometer treats walking 1 step as walking 2 . 5 feet. Define a function named feet _ to _ steps that takes a float

A pedometer treats walking 1 step as walking 2.5 feet. Define a function named feet_to_steps that takes a float as a parameter, representing the number of feet walked, and returns the number of steps walked as an integer by using int(). Then, write a main program that reads the number of feet walked as an input, calls function feet_to_steps() with the input as an argument, and outputs the number of steps returned from feet_to_steps().
Use floating-point arithmetic to perform the conversion.
Note: Converting a float to an integer may affect the result's accuracy.
Ex: If the input is:
150.5
the output is:
60
The program must define and call the following function:
def feet_to_steps(user_feet)

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!