You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'''You will design a program that will ask the user to input an x number of elements. Then the program will give an average. Hint( You will want to ask the user to provide the number of elements initially. )'''
#Make a list of user inputed numbers
xnuminputs = []
#Ask user to enter numbers until they're done
while True:
xnuminputs.append(int(input("Enter a number: ")))
i = input("Type done if done otherwise press enter to continue: ")