Suppose I have a function definiton:
def test():
print 'hi'
I get a TypeError whenever I gives an argument.
Now, I want to put the def statement in try. How do I do this?
|
|
Suppose I have a function definiton:
I get a TypeError whenever I gives an argument. Now, I want to put the def statement in try. How do I do this?
|
||||||
|
|
|
A better way to handle a variable number of arguments in Python is as follows:
|
||
|
|
|
|
If you want to throw the error at call-time, which it sounds like you might want, you could try this aproach:
This will shift the error from the calling location to the function. It accepts any number of parameters via the |
||
|
|
|
|
This is valid:
|
||
|
|
|
|
You said
The What raises the exception is the actual call to the function. So that should be put in the
|
||
|
|
|
|
Here is the relevant section in the tutorial By the way. to fix this error, you should not wrap the function call in a try-except. Instead call it with the right number of arguments! |
||
|
|
|
|||
|
|