mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 04:25:34 -04:00
6 lines
100 B
Python
6 lines
100 B
Python
a = {i: 2*i for i in range(100)}
|
|
b = a.copy()
|
|
for i in range(100):
|
|
print(i, b[i])
|
|
print(len(b))
|