谓词类型 a=b 的 Python 函数参数

发布于 2024-11-28 12:58:01 字数 186 浏览 2 评论 0原文

请原谅我的 Python 技能或缺乏。我看到一些方法调用的形式

auth_req = urllib2.Request(auth_uri, data=authreq_data)

,如果我只输入 authreq_data ,我会收到错误。此类方法参数的正确技术定义是什么?它是布尔/谓词类型吗?

Pardon my Python skill or the lack of it. I saw some methods calls of the form

auth_req = urllib2.Request(auth_uri, data=authreq_data)

If I put in just authreq_data I get an error. What is the correct technical definition for this type of method argument? Is it a boolean/predicate type?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

傲鸠 2024-12-05 12:58:01

它们被称为关键字参数

您可以在不指定关键字的情况下使用它们,只要您还传递它们之前的所有参数即可。

urrlib2.Request 的签名就是

urllib2.Request(url[, data][, headers][, origin_req_host][, unverifiable])

只要指定url, So ,auth_uri 在这种情况下,您应该能够传递 authreq_data 而无需指定它是 data 参数。

auth_req = urllib2.Request(auth_uri, authreq_data)

Python 3 还添加了用于指定仅关键字参数的语法。

They're called keyword arguments.

You can use them without specifying the keyword, so long as you also pass all the arguments before them.

The signature of urrlib2.Request is

urllib2.Request(url[, data][, headers][, origin_req_host][, unverifiable])

So as long as you specify the url, auth_uri in this case, you should be able to pass authreq_data without specifying that it is the data argument.

auth_req = urllib2.Request(auth_uri, authreq_data)

Python 3 has also added a syntax for specifying keyword only arguments.

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