gpt4 book ai didi

python - 将长条件表达式拆分为行

转载 作者:IT老高 更新时间:2023-10-28 21:17:54 32 4
gpt4 key购买 nike

我有一些 if 语句,例如:

def is_valid(self):
if (self.expires is None or datetime.now() < self.expires)
and (self.remains is None or self.remains > 0):
return True
return False

当我输入这个表达式时,我的 Vim 会自动将 and 移动到新行,缩进与 if 行相同。我尝试了更多的缩进组合,但验证总是说那是无效的语法。如何构建long if's?

最佳答案

在整个条件周围添加一层额外的括号。这将允许您根据需要插入换行符。

if (1+1==2
and 2 < 5 < 7
and 2 != 3):
print 'yay'

关于实际使用的空格数,Python Style Guide没有强制要求,但给出了一些想法:

# No extra indentation.
if (this_is_one_thing and
that_is_another_thing):
do_something()

# Add a comment, which will provide some distinction in editors
# supporting syntax highlighting.
if (this_is_one_thing and
that_is_another_thing):
# Since both conditions are true, we can frobnicate.
do_something()

# Add some extra indentation on the conditional continuation line.
if (this_is_one_thing
and that_is_another_thing):
do_something()

关于python - 将长条件表达式拆分为行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11723018/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com