如何在python中创建类似?b:c的东西?

时间:2015-08-08 21:29:50

标签: python boolean

在java中,我通常使用

boolean x = a? b : c;

代替

if(a)
    boolean x = b;
else
    boolean x = c;

有可能在python中这样做吗?

1 个答案:

答案 0 :(得分:2)

你可以这样做:

x = b if a else c

这意味着同样的事情。