In C# I could easily write the following:
string stringValue = string.IsNullOrEmpty( otherString ) ? defaultString : otherString;
Is there a quick way of doing the same thing in Python or am I stuck with an 'if' statement?
|
|
In C# I could easily write the following:
Is there a quick way of doing the same thing in Python or am I stuck with an 'if' statement?
|
|||
|
|
|
|
In Python 2.5, there is
which behaves a lot like ?: in C. However, it's frowned upon for two reasons: readability, and the fact that there's usually a simpler way to approach the problem. For instance, in your case:
|
||||||||||
|
|
|
There are a few duplicates of this question, e.g.
In essence, in a general setting pre-2.5 code should use this:
(given condExp, thenExp and elseExp are arbitrary expressions), as it avoids wrong results if thenExp evaluates to boolean False, while maintaining short-circuit evaluation. |
||
|
|
|
|
chapter 4 of diveintopython.org has the answer. It's called and-or trick in python. |
||
|
|
|
|
I also discovered that just using the "or" operator does pretty well. For instance:
If *get_override()* returns "" or None, it will always use defaultString. |
||
|
|
|
|
If you used ruby, you could write
the built in |
||
|
|
|
|
By the way, j0rd4n, you don't (please don't!) write code like this in C#. Apart from the fact that the
It's true that this only works if |
||||
|
|
|
@Dan
Well yes, it's longer. Not so sure about “more expressive” and “more readable”. At the very least, your claim is disputable. I would even go as far as saying it's downright wrong, for two reasons. First, your code emphasizes the decision-making (rather extremely). Onthe other hand, the conditional operator emphasizes something else, namely the value (resp. the assignment of said value). And this is exactly what the writer of this code wants. The decision-making is really rather a by-product of the code. The important part here is the assignment operation. Your code hides this assignment in a lot of syntactic noise: the branching. Your code is less expressive because it shifts the emphasis from the important part. Even then your code would probably trump some obscure ASCII art like
This wins hands down. C and C# unfortunately don't have such an expressive statement. But (and this is the second argument), the ternary conditional operator of C languages is so long established that it has become an idiom in itself. The ternary operator is as much part of the language as the “conventional” Finally, Jeff Atwood has written the perfect conclusion to this: The best code is no code at all. |
||
|
|
|
|
You can take advantage of the fact that logical expressions return their value, and not just true or false status. For example, you can always use:
With the caveat that it doesn't work like the ternary operator if firstanswer is false. This is because question is evaluated first, assuming it's true firstanswer is returned unless firstanswer is false, so this usage fails to act like the ternary operator. If you know the values, however, there is usually no problem. An example would be:
|
|||
|
|
|
|
It's never a bad thing to write readable, expressive code.
This type of code is longer and more expressive, but also more readable and less likely to get tripped over or mis-edited down the road. Don't be afraid to write expressively - readable code should be a goal, not a byproduct. |
||
|
|