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