Nov-30-2017, 12:44 AM
Hello
I need some help to: User inserts 10 numbers that goes to an array, and then the program prints the smallest number, the biggest number and the average of all 10 numbers.
This is an exercise that will help me understand a few things...thanks for the help.
here is my code so far:
I need some help to: User inserts 10 numbers that goes to an array, and then the program prints the smallest number, the biggest number and the average of all 10 numbers.
This is an exercise that will help me understand a few things...thanks for the help.
here is my code so far:
numberlist = [None]*10 highest = 0 lowest = 0 for n in range(10): numberlist[n]=int(input("insert a number "+str(n+1)+": ")) print(......)