6. 20 LAB: Step counter
A pedometer treat walking 1 tep a walking 2. 5 feet. Define a function named feet_to_tep that take a float a a parameter, repreenting the number of feet walked, and return an integer that repreent the number of tep walked. Then, write a main program that read the number of feet walked a an input, call function feet_to_tep() with the input a an argument, and output the number of tep a an integer. Ue floating-point arithmetic to perform the converion. Ex: If the input i:
150. 5
the output i:
60
The program mut define and call the following function:
def feet_to_tep(uer_feet)