0
Raise ?!?!?!
I didn't understand "raise" :/
3 odpowiedzi
+ 2
using raise you force a specified exception to occur
consider the following program where an exception is raised even if the if condition is true :
x=10
if(x>1):
raise Exception("this is your exception")
+ 3
You use raise to make the program quit with an error that you can specify
0
ok thank u guys