标签: python boolean
在java中,我通常使用
boolean x = a? b : c;
代替
if(a) boolean x = b; else boolean x = c;
有可能在python中这样做吗?
答案 0 :(得分:2)
你可以这样做:
x = b if a else c
这意味着同样的事情。