+ 1
when we create our own exceptions in python can we invoke them as automatically as predefined errors are invoked what code should we write except pass to do so
4 ответов
0
you should "raise" a function e.g raise myCustomError
0
nvy
0
nvy
0
I know that