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

5 lines
81 B
Python

x = { 'one': 1, 'two': 2 }
if x['one'] == 1:
print "Correct!"
x['three'] = 3