myDict = {'a':1,'b':2,'c':3,'d':4}  
print(myDict)  
if 'a' in myDict:   
    del myDict['a']  
print(myDict)

 

相关文章: