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

5 lines
101 B
Python
Raw Normal View History

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