mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
11 lines
137 B
Python
11 lines
137 B
Python
d = {1:2, 3:4}
|
|
print(d)
|
|
d.update(["ab"])
|
|
print(d[1])
|
|
print(d[3])
|
|
print(d["a"])
|
|
print(len(d))
|
|
d.update([(1,4)])
|
|
print(d[1])
|
|
print(len(d))
|