Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to average in python with loop

list = input('Input a list of numbers separated by comma then space:
 ')
try:
    list = list.split(', ')
    sum = 0
    
    for number in list:
        sum = int(number) + sum

    avg = sum / len(list)
    print('The average of the numbers you entered is: ', avg)
except ValueError:
    print('Please enter a list of number separated by a comma and space only')
 
PREVIOUS NEXT
Tagged: #average #python #loop
ADD COMMENT
Topic
Name
1+2 =