Files
2025-09-13 14:39:22 +08:00

7 lines
130 B
Plaintext

x = { 'one' : 1 , 'two' : 2 } <EOL>
if x [ 'one' ] == 1 : <EOL>
<INDENT>
print 'Correct!' <EOL>
<OUTDENT>
x [ 'three' ] = 3 <EOL>