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

5 lines
101 B
Python
Raw Normal View History

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