python-for-informatics icon indicating copy to clipboard operation
python-for-informatics copied to clipboard

Rewrite the program that prompts the user for a list of numbers and p…

Open SharmilaSrinivasa opened this issue 6 years ago • 1 comments

…rints out the maximum and minimum of the numbers at the end when the user enters "done". Write the program to store the numbers the user enters in a list and use the max() and min() functions to compute the maximum and minimum numbers after the loop completes.

Enter a number: 6 Enter a number: 2 Enter a number: 9 Enter a number: 3 Enter a number: 5 Enter a number: done Maximum: 9.0 Minimum: 2.0

SharmilaSrinivasa avatar Jun 26 '18 20:06 SharmilaSrinivasa

this commit looks like it adds a new file but I can't quite tell what it's named, @SharmilaSrinivasa can you modify your commit to create a new file in the appropriate directory?

epequeno avatar Nov 01 '18 13:11 epequeno