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

4 lines
79 B
Python
Raw Normal View History

2023-07-01 11:58:00 -04:00
>>> secret='foo'
>>> print 'got it' if secret=='foo' else 'try again'
'got it'