view python/example/ternary.py @ 814:a56a844f6e6f

add curl in k8s command
author Jeff Hammel <k0scist@gmail.com>
date Fri, 11 Nov 2016 08:37:34 -0800 (2016-11-11)
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