Dictionary Python Tutorial

d = {"A":"a", "B":"b"}    
print d 
d["retrycount"] = 3                       
print d
d[42] = "douglas"                              
print d