Dictionary Python Tutorial

d = {} 
d["key"] = "value" 
d["key"] = "other value"
print d 
d["Key"] = "third value" [2] 
print d