0
HELP! Please how do I get to stop the error message in the console from showing?
I'm trying to catch the error whenever a non-numeric input is being inputted. But it still shows the error message. What's wrong with it? https://code.sololearn.com/cg3LrPtm4ziR/?ref=app
4 Answers
+ 5
The code after the try-except block will always be executed. You could put it inside the try-part to make it only run, if there is no issue with the input.
+ 4
The code ***after*** the try-except block will be always executed.
0
Thanks, Lisa. It works when I put it in the try-part. How about if I put quit() at the end of "except"?
I still wish to understand why the try-except block will always be executed but still outputs the error message without the "quit()" being added at the end of the except block though.
0
Alright. Thank you so much, Lisa