RosettaCodeData/Task/Conditional-structures/Python/conditional-structures-3.py

4 lines
79 B
Python
Raw Normal View History

2013-04-10 16:57:12 -07:00
>>> secret='foo'
>>> print 'got it' if secret=='foo' else 'try again'
'got it'