Showing posts with label conditional expression. Show all posts
Showing posts with label conditional expression. Show all posts

Wednesday, 30 July 2008

Python conditional expressions

Available from 2.5.

>>> word = "banana" if 0 is 0 else "peel"
>>> word
'banana'

>>> word = "banana" if 1 is 0 else "peel"
>>> word
'peel'