Simulating the tertiary operator using and and or.
and and or operators in python return the objects themselves rather than Booleans. Thus:
In [18]: a = True
In [19]: a and 3 or 4
Out[19]: 3
In [20]: a = False
In [21]: a and 3 or 4
Out[21]: 4
However, Py 2.5 seems to have added an explicit tertiary operator
In [22]: a = 5 if True else '6'
In [23]: a
Out[23]: 5
Well, this works if you are sure that your true clause does not evaluate to False. example:
>>> def foo():
... print "foo"
... return 0
...
>>> def bar():
... print "bar"
... return 1
...
>>> 1 and foo() or bar()
foo
bar
1
To get it right, you've got to just a little bit more:
>>> (1 and [foo()] or [bar()])[0]
foo
0
However, this isn't as pretty. if your version of python supports it, use the conditional operator.
>>> foo() if True or bar()
foo
0