vote up 0 vote down star

What is the most idiomatic way to do the following?

def xstr(s):
    if s is None:
        return ''
    else:
        return s

s = xstr(a) + xstr(b)

update: I'm incorporating Tryptich's suggestion to use str(s), which makes this routine work for other types besides strings. I'm awfully impressed by Vinay Sajip's lambda suggestion, but I want to keep my code relatively simple.

def xstr(s):
    if s is None:
        return ''
    else:
        return str(s)
flag

3  
I like your original syntax. I think it's already quite clear and easy to read. – GuiSim Jun 23 at 19:44
@GuiSim: I might be biased, but my answer reads almost like a normal English sentence... – SilentGhost Jun 23 at 19:49

10 Answers

vote up 7 vote down check

If you actually want your function to behave like the str() built-in, but return an empty string when the argument is None, do this:

def xstr(s):
    if s is None:
        return ''
    return str(s)
link|flag
I'm keeping the else, but thanks for the str(s) tip so multiple types can be handled. nice! – Mark Harrison Jul 1 at 9:39
vote up 0 vote down
def xstr(s):
   return s or ""
link|flag
vote up 1 vote down

Variation on the above if you need to be compatible with Python 2.4

xstr = lambda s: s is not None and s or ''
link|flag
vote up 9 vote down

return s or '' will work just fine for your stated problem!

link|flag
vote up 10 vote down

If you know that the value will always either be a string or None:

xstr = lambda s: s or ""

print xstr("a") + xstr("b") # -> 'ab'
print xstr("a") + xstr(None) # -> 'a'
print xstr(None) + xstr("b") # -> 'b'
print xstr(None) + xstr(None) # -> ''
link|flag
by far the most pythonic. Uses the fact that python treats None, an empty list, an empty string, 0, etc as false. Also uses the fact that the or statement returns the first element that is true or the last element given to the or (or groups of ors). Also this uses lambda functions. I would give you +10 but obviously it wont let me. – Matt Jun 23 at 22:59
This will convert 0 and False (and anything else that evaluates to False when passed to bool()) – scrible Jun 24 at 0:12
2  
I don't think it's "by far the most pythonic". It's a common idiom in other languages, and I don't think it's wrong to use it in Python, but conditional expressions where introduced precisely to avoid tricks like this. – Roberto Bonvallet Jun 24 at 4:44
I don't think that was the reasoning behind conditional expressions. It's not particularly tricky, either - there's nothing all that special about it other than it's neat and tidy. I suggest only using it if you know that s is always a string or None - as I said in the introduction. If that's the case, this seems like the most compact way. – Vinay Sajip Jun 24 at 11:21
vote up -2 vote down

Use short circuit evaluation:

s = a or '' + b or ''

Since + is not a very good operation on strings, better use format strings:

s = "%s%s" % (a or '', b or '')
link|flag
ever heard of DRY? – SilentGhost Jun 23 at 19:38
1  
This also will convert 'a' to empty strings for all false-like values, not just None. For instance, empty tuples, lists, and dicts will convert to empty strings, which is not what the OP specified. – Triptych Jun 23 at 19:41
+ is a perfectly good operator for two strings. It's when you try to use it to join dozens that you have trouble. For two, it'll probably be faster than other options; either way, it's in the noise. – kquinn Jun 23 at 22:10
vote up 0 vote down

Functional way (one-liner)

xstr = lambda s: '' if s is None else s
link|flag
"def xstr(s): return '' if s is None else s " is an on-liner too, python is not as strict with whitespaces after all – SilentGhost Jun 23 at 19:35
1  
It's no real one-liner, it's just written in one line g – Dario Jun 23 at 19:42
in what sense it's not a real onliner? check in your interpreter - it's not a syntax error. for all intents and purposes it's way real than lambda ^_^ – SilentGhost Jun 23 at 19:47
vote up 3 vote down
def xstr(s):
    return {None:''}.get(s, s)
link|flag
I think, it is rather pythonic -- how about this one: "xstr = lambda s : {None:''}.get(s,s)" -- reduces the whole thing to a one-liner. – Juergen Jun 23 at 19:36
3  
Unnecessarily slow (extra dict construction and lookup), and harder to read. Pretty unpythonic. – Triptych Jun 23 at 19:37
You're right. It's rather perlish but it avoids a conditional jump in python bytecode. – tobidope Jun 23 at 19:40
The get() function call implies at least one additional conditional jump. – Triptych Jun 23 at 19:45
I wouln't be able to say what this should do without knowing the question or looking up get. – Dario Jun 23 at 19:46
vote up -1 vote down
def xstr(s):
    return s if s else ''

s = "%s%s" % (xstr(a), xstr(b))
link|flag
3  
This will return an empty string for all false-like values, which is not what the poster asked for. – Triptych Jun 23 at 19:29
vote up 21 vote down
def xstr(s):
    return '' if s is None else str(s)
link|flag
I think this requires Python 2.6 or later. (But then, to a first approximation, so does sanity.) – Robert Rossney Jun 23 at 20:08
3  
works on 2.5 for me just fine. – SilentGhost Jun 23 at 20:14
1  
This syntax was introduced in 2.5; for earlier versions of Python, you can use return s is not None and s or ''. – Ben Blank Jun 24 at 0:16
2  
I'd turn it around to emphasize the more commen case: return s if s is not None else "" – Ber Jun 24 at 7:45
2  
@Ber: I would keep it as is, to avoid a double negative. – Nikhil Chelliah Jun 26 at 7:09
show 1 more comment

Your Answer

Get an OpenID
or

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