micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
# 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))
|
Reference in New Issue
Block a user