In C# I could easily write the following:
string stringValue = string.IsNullOrEmpty( otherString ) ? defaultString : otherString;
Is there a qu
Chapter 4 of diveintopython.net has the answer. It's called the and-or trick in Python.