Is is possible to return from a method in single line in python
Looking for something like this
return None if x is None
Tried above, and it is invalid syntax
I could easily do:
if x is None:
return None
But just curious if I can combine above if statement into a single line
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…