mirror of
https://github.com/micropython/micropython.git
synced 2024-07-26 18:26:56 +01:00
9 lines
96 B
Python
9 lines
96 B
Python
# create a large dictionary
|
|
|
|
d = {}
|
|
x = 1
|
|
while x < 1000:
|
|
d[x] = x
|
|
x += 1
|
|
print(d[500])
|