You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
190 B
17 lines
190 B
11 years ago
|
# 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'])
|