mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
4 lines
81 B
Python
4 lines
81 B
Python
x = { 'one': 1, 'two': 2 }
|
|
if x['one'] == 1:
|
|
print "Correct!"
|
|
x['three'] = 3
|