Tagged Questions
7
votes
9answers
688 views
How can I closely achieve ?: from C++/C# in Python?
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 ...
1
vote
3answers
492 views
What does the “|” sign mean in Python?
This question originally asked (wrongly) what does "|" mean in Python, when the actual question was about Django. That question had a wonderful answer by Triptych I want to preserve.