diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 07:57:25 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-03 07:57:25 +0000 |
commit | 9c98a3f84e356543316777ca714ad7e6af453f99 (patch) | |
tree | 6309a7e3f91b352b96b4c161906485d11313bbdb | |
parent | fbb1f33c4f953799f40fb9667ad5360984937fd7 (diff) |
Fri, May 3, 2024, 12:57 AM -07:00
-rw-r--r-- | wk6/lect/calculator.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wk6/lect/calculator.py b/wk6/lect/calculator.py index 102869b..0d4e3ab 100644 --- a/wk6/lect/calculator.py +++ b/wk6/lect/calculator.py @@ -16,7 +16,8 @@ def get_int(prompt): try: return int(input(prompt)) except ValueError: - print("Not an integer!!! :(:(:(") + # print("Not an integer!!! :(:(:(") + pass def main(): |