4 lines
62 B
Python
4 lines
62 B
Python
|
d = {0:10, 1:20}
|
||
|
print(d)
|
||
|
d.update({2:30})
|
||
|
print(d)
|