我需要打印一些东西,只有当布尔变量设置为True。所以,在看完这个之后,我尝试了一个简单的例子:

>>> a = 100
>>> b = True
>>> print a if b
  File "<stdin>", line 1
    print a if b
             ^
SyntaxError: invalid syntax  

同样的,如果我写print a if b==True。

我错过了什么?


当前回答

内联if-else表达式必须包含else子句,例如:

a = 1 if b else 0

如果你想让你的'a'变量值保持不变-使用旧的'a'值(否则仍然需要语法要求):

a = 1 if b else a

当b变为False时,这段代码保持a不变。

其他回答

你只是把事情复杂化了。

if b:
   print a

你可以使用:

print (1==2 and "only if condition true" or "in case condition is false")

你还可以继续这样说:

print (1==2 and "aa" or ((2==3) and "bb" or "cc"))

现实世界的例子:

>>> print ("%d item%s found." % (count, (count!=1 and 's' or '')))
1 item found.
>>> count = 2
>>> print ("%d item%s found." % (count, (count!=1 and 's' or '')))
2 items found.

因为2.5你可以使用C 's ' ' ?"三元条件运算符,语法为:

[on_true] if [expression] else [on_false]

所以你的例子很好,但你必须简单地添加其他,比如:

print a if b else ''

你为什么不简单地写:

if b:
    print a
else:
    print 'b is false'

你总是需要在内联if中使用else:

a = 1 if b else 0

但更简单的方法是a = int(b)