Python在if或if / else之前定义一个值

时间:2018-11-21 15:10:23

标签: python if-statement

if / else可以这样写:

if <condition>:
    variable = <value>
else:
    variable = <other value>

但是可以通过以下方式实现

variable = <other value>
if <condition>:
    variable = <value>

是否存在关于哪个首选的有意义的争论?还是归结为个人喜好?

注意:我知道在Python中您也可以这样做:

variable = <value> if <condition> else <other value>

我只关心语法。

0 个答案:

没有答案