Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In C#, I can say x ?? "", which will give me x if x is not null, and the empty string if x is null. I've found it useful for working with databases.

Is there a way to return a default value if Python finds None in a variable?

share|improve this question

4 Answers

up vote 8 down vote accepted

Use the or operator:

return x or "default"
share|improve this answer
5  
This will return "default" if x is any falsy value, e.g. None, [], "", etc. but is often good enough and cleaner looking. – FogleBird Dec 4 '12 at 19:45
return "default" if x is None else x

try the above.

share|improve this answer
Use this when you only want the default value when x is None and not other false values. Which matches the C# x??"default" – brent.payne Apr 30 at 17:00
1  
Otherwise, just drop the is None, and let x evaluate as a Boolean value on its own. – chepner Apr 30 at 17:07
Or use @starhusker's x or "default". Often I used to use the ternary sytax b/c I what to do x.value if X might be None. So x.value if x else "default", but this is more readable getattr(obj, "value", "default"). The trade off is that the later is not caught by many auto-refactor tools. – brent.payne Apr 30 at 23:49

you can try this:

x if x is not None else some_value

example:

In [22]: x=None

In [23]: print x if x is not None else "foo"
foo

In [24]: x="bar"

In [25]: print x if x is not None else "foo"
bar
share|improve this answer

You've got the ternary syntax x if x else '' - is that what you're after?

share|improve this answer
"ternary", not "tertiary" – Paul McGuire Dec 4 '12 at 20:40
@PaulMcGuire mea culpa - ty Paul – Jon Clements Dec 4 '12 at 20:41
And it's not actually called a ternary syntax (any operator that takes 3 operands could be called a ternary operator, not just this one). It's proper name is a conditional expression. – Martijn Pieters Dec 5 '12 at 15:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.