Python三元运算符检查大多数左引用

时间:2017-10-31 17:09:25

标签: python conditional variable-assignment assignment-operator ternary

以最短的方式编写这样的三元运算符的pythonic方法是什么?

(x!=null)? x.something:0; 

我想使用像

这样的东西
y = x.something or 0

但是会以某种方式检查引用

x.y.z = None whenever x or y are None

0 个答案:

没有答案