Question: #Complete the avg function so that it will calculate the number of of cases per month and print it to the screen. Test case input:
#Complete the avg function so that it will calculate the number of of cases per
month and print it to the screen.
Test case input:
January = "30"
February = "90"
March = "75"
April = "91"
May = "72"
#Expected output: The average number of daily calls this week is: 71.6
def avg(january,february,march,april,may):
# code in the white space here
print("The average number of cases this quarter is: " + str(result))'''
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
