Raise Exception | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Raise Exception

Can anyone please tell me what is Raise exception for? I have read comments on the Raise exception lesson but didn't catch that

3rd Apr 2019, 12:10 PM
Mahdi Jafari
Mahdi Jafari - avatar
2 Answers
+ 3
Raise exception, means to cause your program's execution to stop with an error message in a specific event. For example you can raise a ValueError when you asked for user input and you got something that won't work for your program, like you need a positive number and you got zero. It can also be used as a control flow tool, when you "catch" the exception in a try/expect block and manipulate what should happen in the program when the error is raised. With previous example you can expect the same error you raised before and give a default value instead of the faulty user input.
3rd Apr 2019, 8:46 PM
Tibor Santa
Tibor Santa - avatar
+ 2
Tibor Santa Great explanation, TY
4th Apr 2019, 9:48 PM
Mahdi Jafari
Mahdi Jafari - avatar