mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
8 lines
131 B
Python
8 lines
131 B
Python
# copying a large dictionary
|
|
|
|
a = {i:2*i for i in range(1000)}
|
|
b = a.copy()
|
|
for i in range(1000):
|
|
print(i, b[i])
|
|
print(len(b))
|