This activity is worth 10 total points
This lesson's Group Activities are:
We're going to take the Group Activity from last week and tweak it. Instead of storing the random numbers in a list, we're going to store them in a file. Write a program using functions and mainline logic which prompts the user to enter a number, then generates that number of random integers and stores them in a file. It should then display the following data to back to the user:
The list of integers
The lowest number in the list
The highest number in the list
The total sum of all the numbers in the list
The average number in the list
At a minimum, the numbers should range from 0 to 50, but you can use any range you like.
Helpful hint:don't forget about input validation loops and try/catch exceptional handling. Both are very useful when used in conjunction with functions.
this program uses python