3 lines
79 B
Python
3 lines
79 B
Python
>>> secret='foo'
|
|
>>> print 'got it' if secret=='foo' else 'try again'
|
|
'got it'
|