是可以从python中的单行方法返回
寻找这样的东西
return None if x is None
试过上面,它是无效的语法
我很容易做到:
if x is None: return None
但只是好奇我是否可以将上面的if语句组合成一行
python
python ×1