Dictionary Python

d = {"A":"a", "B":"b"}     
print d 
print d["A"]                                        
print d["B"]