#Doctors recommend to walk at least 10,000 steps per day. #Write a function steps that has one parameter the number of people monitored in some #doctor office. The function reads the number of steps each person walked on specific #day. The function returns the average number of steps per patient. #Write main to test your function: main reads reads the number of people monitored in #some doctor office. The program uses function steps to find the average number of steps #per patient. def steps(num_people): total=0 for i in range(num_people): walk_steps=int(input("number of steps ")) total=total+walk_steps return total/num_people def main(): num_people=int(input("number of people ")) print("average number of steps", steps(num_people)) main()