做下面的事情最习惯的方法是什么?
def xstr(s):
if s is None:
return ''
else:
return s
s = xstr(a) + xstr(b)
更新:,我结合了Tryptich的建议来使用str(s),这使得这个例程适用于字符串之外的其他类型。Vinay Sajip的Lambda建议给我留下了非常深刻的印象,但我想让我的代码相对简单。
def xstr(s):
if s is None:
return ''
else:
return str(s)