mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-21 13:05:37 -04:00
7 lines
64 B
Python
7 lines
64 B
Python
d = {1: 2, 3: 4}
|
|
print(d)
|
|
d.clear()
|
|
print(d)
|
|
d[2] = 42
|
|
print(d)
|