view python/example/ternary.py @ 785:205dd903e4c8

add some mediocre workflow
author Jeff Hammel <k0scist@gmail.com>
date Mon, 12 Sep 2016 14:11:49 -0700
parents 776d83eb0fd9
children
line wrap: on
line source

#!/usr/bin/env python

"""
illustrates python ternary is smart about branching
"""

class Foo(object):
    def __init__(self):
        print 'hi'
bar = 1
print Foo() if bar is None else bar