Hello, I am trying to get the total, max, min, and average of data entries. Trying to use a while loop but not sure how to get total of entires. This is what I have so far.
print("Welcome! This program will calculate statistics for your integer data.")
number = int(input("Please type a number: "))
next = input("Additional number? (y/n): ")
while next == 'y':
number = int(input("Next number"))
next = input("Additional number? (y/n): ")
if next == 'n':
print("Number analysis: ")Any help would be greatly appreciated!
