{
  "nbformat": 4,
  "nbformat_minor": 0,
  "metadata": {
    "colab": {
      "provenance": []
    },
    "kernelspec": {
      "name": "python3",
      "display_name": "Python 3"
    },
    "language_info": {
      "name": "python"
    }
  },
  "cells": [
    {
      "cell_type": "code",
      "execution_count": 1,
      "metadata": {
        "id": "Rx1f95F4ygT7"
      },
      "outputs": [],
      "source": [
        "# Task:\n",
        "# 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.\n",
        "# Assumptions: the user will not enter non-numeric data.\n",
        "# Enhancement: label the outputs.\n",
        "# Enhancement: also print out the minimum and maximum numbers entered.\n",
        "# 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.\n",
        "\n",
        "# Set up variables here ---\n",
        "\n",
        "\n",
        "# Write a \"while\" loop that prompts the user to input numbers\n",
        "\n",
        "# -- end of \"while\" loop\n",
        "\n",
        "# Write a \"for\" loop to process the numbers\n",
        "\n",
        "\n",
        "# Keep track of many numbers are in the list\n",
        "\n",
        "# Keep track of the largest and smallest numbers so far\n",
        "\n",
        "\n",
        "# -- end of \"for\" loop\n",
        "\n",
        "# Calculate sum and average\n",
        "\n",
        "# Output the results\n"
      ]
    }
  ]
}