Comment faire une nouvelle clé dans un dictionnaire Python

a = {"Hello":1}
a["Bye"] = 2
print(a)
# {'Hello':1,'Bye':2}
Sad Santa