mikepfeifer2729 mikepfeifer2729 08-04-2024 Mathematics contestada Complete the following code to print the average of the list.newₗist = [0, 1, 2, 3, 4]xxxprint('The average is {}'.format(avg))a) for avg in newₗistb) avg = sum(newₗist) / len(newₗist)c) print(avg(newₗist))d) avg(newₗist)