Dictionary Keys Are Case-Sensitive : Key « Dictionary « Python Tutorial






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








8.16.Key
8.16.1.Dictionary Keys Are Case-Sensitive
8.16.2.Mixing Data types in a Dictionary