So I need to write a code to find the minimum and maximum number from a set of integers inputted by a user but I am not allowed to use lists. This is what my code looks like so far.
sum = 0
counter = 0
done = False
while not done:
integer_input = int(input("Please enter a number."))
if counter < 9:
counter += 1
sum = sum+integer_input
else:
done = True
print("The average of your numbers is:", sum/10,"The minimum of your numbers is:" "The maximum of your numbers is:")
Is there a for loop I could use or something from the math module possibly?