[solved]-Question 5 14 Points Writing App Keep Track Exercise Patterns App Users Enter Many Minutes Q39079418
needs to be in python, make sure its a simple program for beginnerpython class
Question 5 (14 points) You are writing an app to keep track of exercise patterns. The app has users enter how many minutes they worked out each day of the week. Write a function called countWorkOutDays that receives a list of 7 numbers representing how many minutes the user worked out on each day of the week. The function should return the total number of days the user worked out for more than 20 minutes. Example Function Calls: countWorkOutDays((100, 3,, 30, 6, 0, 0, 501# should return 3 countWorkOutDayS ((15, 10, 0, o, 30, 5. 01 should return 1 Show transcribed image text Question 5 (14 points) You are writing an app to keep track of exercise patterns. The app has users enter how many minutes they worked out each day of the week. Write a function called countWorkOutDays that receives a list of 7 numbers representing how many minutes the user worked out on each day of the week. The function should return the total number of days the user worked out for more than 20 minutes. Example Function Calls: countWorkOutDays((100, 3,, 30, 6, 0, 0, 501# should return 3 countWorkOutDayS ((15, 10, 0, o, 30, 5. 01 should return 1
Expert Answer
Answer to Question 5 (14 points) You are writing an app to keep track of exercise patterns. The app has users enter how many minut… . . .
OR

