myDict = {'a':,'b':,'c':,'d':}
print(myDict)
if 'a' in myDict:
del myDict['a']
print(myDict)
05-11 21:52