5 lines
81 B
Python
5 lines
81 B
Python
x = { 'one': 1, 'two': 2 }
|
|
if x['one'] == 1:
|
|
print "Correct!"
|
|
x['three'] = 3
|