You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
17 lines
190 B
Python
17 lines
190 B
Python
|
|
# dict constructor
|
||
|
|
|
||
|
|
d = dict()
|
||
|
|
print(d)
|
||
|
|
|
||
|
|
d = dict({1:2})
|
||
|
|
print(d)
|
||
|
|
|
||
|
|
d = dict(a=1)
|
||
|
|
print(d)
|
||
|
|
|
||
|
|
d = dict({1:2}, a=3)
|
||
|
|
print(d[1], d['a'])
|
||
|
|
|
||
|
|
d = dict([(1, 2)], a=3, b=4)
|
||
|
|
print(d[1], d['a'], d['b'])
|