Respuesta :

Below is the program which asks the user to enter a series of 20 numbers. The program should store the numbers in an array and then display the following data the task mentioned in the question and is written in python.

Coding Part:

mylist = []

#initialize an empty list to hold the values

for n in range(1, 21):

#loop to request 20 inputs from user

n = int(input('Enter a value : '))

mylist.append(n)

#append each value to the list

print('lowest : ' , min(mylist))

print('highest : ' , max(mylist))

print('Total : ' , sum(mylist))

print('Average : ' , sum(mylist)/len(mylist))

#displays the required information

To know more about array, visit: https://brainly.com/question/24275089

#SPJ4