10 lines
83 B
Python
10 lines
83 B
Python
d={'a':1,
|
|
'b':2}
|
|
|
|
print(d)
|
|
d.update({'c':5})
|
|
print(d)
|
|
print(type(d))
|
|
|
|
|
|
|