mirror of
https://github.com/micropython/micropython.git
synced 2025-09-08 19:00:50 +02:00
19 lines
173 B
Python
19 lines
173 B
Python
# basic dictionary
|
|
|
|
d = {}
|
|
print(d)
|
|
d[2] = 123
|
|
print(d)
|
|
d = {1:2}
|
|
d[3] = 3
|
|
print(d)
|
|
d[1] = 0
|
|
print(d)
|
|
print(d[1])
|
|
|
|
x = 1
|
|
while x < 100:
|
|
d[x] = x
|
|
x += 1
|
|
print(d[50])
|