Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
136 views
in Technique[技术] by (71.8m points)

python - Is it possible to write single line return statement with if statement?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Yes, it's called a conditional expression:

return None if x is None else something_else

You need an else something in a conditional for it to work.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...