下面的Python 语句的等效代码是什么?

发布于 2024-11-28 08:12:53 字数 139 浏览 1 评论 0原文

post_data = None if post_args is None else urllib.urlencode(post_args)

我无法理解这段代码到底做了什么。有什么帮助吗?

谢谢。

post_data = None if post_args is None else urllib.urlencode(post_args)

I can't understand what this code really do. Any help?

Thanks.

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

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

发布评论

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

评论(2

故事未完 2024-12-05 08:12:53
post_data = None if post_args is None else urllib.urlencode(post_args)

等价于以下内容:

if post_args is None:
    post_data = None 
else: 
    post_data = urllib.urlencode(post_args)
post_data = None if post_args is None else urllib.urlencode(post_args)

is equivalent to the following:

if post_args is None:
    post_data = None 
else: 
    post_data = urllib.urlencode(post_args)
超可爱的懒熊 2024-12-05 08:12:53

这是 python 2.5 中引入的条件表达式。 (它确实应该在一行上)。

它的作用与它的读法完全一样——如果 post_args 为 None,则 post_dataNone,否则它被分配为 urllib.urlencode 的结果(post_args)

更详细的编写方式是

if post_args is None:
    post_data = None
else:
    post_data = urllib.urlencode(post_args)

or,使用 and-or 技巧

post_data = (post_args is None and [None] or [urllib.urlencode(post_args)])[0]

That's a conditional expression, introduced in python 2.5. (It really ought to be on one line).

It does exactly what it reads like -- post_data is None if post_args is None, otherwise it's assigned the result of urllib.urlencode(post_args).

A more verbose way of writing it would be

if post_args is None:
    post_data = None
else:
    post_data = urllib.urlencode(post_args)

or, using the and-or trick:

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