Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Python Ternary Operator

If Python would support the (x ? a : b) syntax from C/C++, I would write:

print paid ? ("paid: " + str(paid) + " €") : "not paid"

I really don't want to have an if-check and two independent prints here (because that is only an example above, in my code, it looks much more complicated and would really be stupid to have almost the same code twice).

However, Python does not support this operator or any similar operator (afaik). What is the easiest/cleanest/most common way to do this?

I have searched a bit and seen someone defining an iif(cond,iftrue,iffalse) function, inspired from Visual Basic. I wondered if I really have to add that code and if/why there is no such basic function in the standard library.

share|improve this question

marked as duplicate by Vinko Vrsalovic, Dave Costa, Stephen, Salil, Nikola Smiljanić Jun 15 '10 at 13:43

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Try

 print ("paid: " + str(paid) + " €") if paid else "not paid"
share|improve this answer

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