programming-examples/python/Dictionary/Python program to add a key to a dictionary.py

4 lines
62 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
d = {0:10, 1:20}
print(d)
d.update({2:30})
print(d)