Conditional Expressions *********************** if/else ======= `What's New in Python 2.5`_:: a = 1 if x > 15 else 2 minimum_length = 2 if is_parent else 1 result = module_elements[-2 if is_parent else -1] .. _`What's New in Python 2.5`: http://www.onlamp.com/pub/a/python/2006/10/26/python-25.html