Question: In Python: # Q2: consider the following list, MyNewList, we want # to find total and mean using for loop. fill the blanks shown by
In Python:
# Q2: consider the following list, MyNewList, we want # to find total and mean using for loop. fill the blanks shown by '?'. MyNewList = list(range(1,20,2)) total = '?' # put a starting value for total, 1 point for element '?' MyNewList '?' #1 point total = total + '?' print('total is ', '?') mean = total / len('?') print(' and the mean is ', mean) Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
