如何处理Python函数调用中参数数量错误时发生的错误?

发布于 2024-07-11 21:32:46 字数 207 浏览 8 评论 0原文

当我在函数中给出错误数量的参数时,我会收到错误。 我该如何处理?

我给了

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

归途 2024-07-18 21:32:46

调用者触发此异常,而不是接收者。

如果您希望接收函数显式检查参数计数,您需要使用 varargs:

def fun_name(*args):
  if len(args) != 2:
    raise TypeError('Two arguments required')

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:

def fun_name(*args):
  if len(args) != 2:
    raise TypeError('Two arguments required')
2024-07-18 21:32:46

您需要在调用函数的地方处理它。

try:
  fun_name(...)
except TypeError:
  print "error!"

You need to handle it where you call the function.

try:
  fun_name(...)
except TypeError:
  print "error!"
手心的温暖 2024-07-18 21:32:46

如果您使用错误数量的参数调用函数,则有两种可能性:

  • 要么将函数设计为处理任意数量的参数。 那么你应该知道如何处理额外的参数。 Alec Thomas 的回答向您展示了如何处理此案。
  • 或者你的设计有根本​​性的缺陷,你就陷入了深深的麻烦。 在这种情况下,捕获错误并没有帮助。

If you call a function with the wrong number of parameters then there are two possibilities:

  • Either you design your function to handle an arbitrary number of arguments. Then you should know what to do with the extra arguments. The answer of Alec Thomas shows you how to handle this case.
  • Or your design is fundamentally flawed and you are in deep trouble. Catching the error doesn't help in this case.
红焚 2024-07-18 21:32:46

如果删除 try...catch 部分,它应该显示它抛出的异常类型。

If you remove the try...catch parts it should show you what kind of exception it is throwing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文