python-for-informatics
python-for-informatics copied to clipboard
Rewrite the program that prompts the user for a list of numbers and p…
…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
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?