Home /
Expert Answers /
Computer Science /
complete-the-function-pay-days-first-pay-interval-that-produces-a-list-of-all-the-pay-days-start-pa777
(Solved): Complete the function pay_days (first_pay, interval) that produces a list of all the pay days start ...
Complete the function pay_days (first_pay, interval) that produces a list of all the pay days starting with first_pay until the end of the year. For example: Answer: (penalty regime: 0,10,20,…% ) 1 from datetime 1mport datetime, timedelta 3 * def pay_days(first_pay, interval): "wreturns a list of all the pay days that will occur from the startdate unt1l the end of the year"m. answer =[] pay_day = first pay while answer. append (pay_day) pay_day = return answer
Here's the complete function pay_days that generates a list of pay days starting with first_pay until the end of the year, based on the given code snippet:This function uses the datetime module to handle dates and times. It takes two parameters:first_pay: The starting pay day.interval: The number of days between each pay day.