如何处理Python函数调用中参数数量错误时发生的错误?
当我在函数中给出错误数量的参数时,我会收到错误。 我该如何处理?
我给了
def fun_name(...):
try:
...
except TypeError:
print 'Wrong no of arg'
它不起作用。
请帮助。
When i give wrong number of parameters in a function , i get errors.
How do I handle it?
I gave
def fun_name(...):
try:
...
except TypeError:
print 'Wrong no of arg'
It is not working.
Help please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
调用者触发此异常,而不是接收者。
如果您希望接收函数显式检查参数计数,您需要使用 varargs:
The caller triggers this exception, not the receiver.
If you want the receiving function to explicitly check argument count you'll need to use varargs:
您需要在调用函数的地方处理它。
You need to handle it where you call the function.
如果您使用错误数量的参数调用函数,则有两种可能性:
If you call a function with the wrong number of parameters then there are two possibilities:
如果删除
try...catch
部分,它应该显示它抛出的异常类型。If you remove the
try...catch
parts it should show you what kind of exception it is throwing.