# -*- coding: utf-8 -*-
"""71-Process-numbers.ipynb

Automatically generated by Colab.

Original file is located at
    https://colab.research.google.com/drive/1H2XCBvl-yeydrDu0U7bJzlO6tbnHas2G
"""

# Task:
# Write a program which repeatedly reads numbers until the user enters “done”. The numbers entered should be appended to a list. Once “done” is entered, print out the total, count, and average of the numbers in the list.
# Assumptions: the user will not enter non-numeric data.
# Enhancement: label the outputs.
# Enhancement: also print out the minimum and maximum numbers entered.
# Enhanvement: If the user enters anything other than a number, detect their mistake using try and except, print an error message, and skip to the next number.

# Set up variables here ---


# Write a "while" loop that prompts the user to input numbers

# -- end of "while" loop

# Write a "for" loop to process the numbers


# Keep track of many numbers are in the list

# Keep track of the largest and smallest numbers so far


# -- end of "for" loop

# Calculate sum and average

# Output the results