Archived
1
0
Fork 0
This repository has been archived on 2024-05-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
PY4E/Assignment 5.2
Michael Loveys bb326fbd0a inital commit
2021-09-08 10:33:48 -05:00
..
main.py inital commit 2021-09-08 10:33:48 -05:00
readme.md inital commit 2021-09-08 10:33:48 -05:00

Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number. Enter 7, 2, bob, 10, and 4 and match the output below.

Desired Output:

Invalid input
Maximum is 10
Minimum is 2