Files
TencentOS-tiny/components/language/micropython/tests/stress/dict_create.py
2022-09-29 12:10:37 +08:00

9 lines
96 B
Python

# create a large dictionary
d = {}
x = 1
while x < 1000:
d[x] = x
x += 1
print(d[500])