Files
Pyarmor-Static-Unpack-1shot/tests/input/test_dict.py

5 lines
81 B
Python
Raw Normal View History

2012-06-03 20:39:45 -07:00
x = { 'one': 1, 'two': 2 }
if x['one'] == 1:
print "Correct!"
2012-06-03 20:39:45 -07:00
x['three'] = 3