---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
/Users/tvu/anaconda/envs/py35/lib/python3.5/collections/__init__.py in __delitem__(self, key)
928 try:
--> 929 del self.maps[0][key]
930 except KeyError:
KeyError: 'y'
During handling of the above exception, another exception occurred:
KeyError Traceback (most recent call last)
<ipython-input-7-df3e26fa6544> in <module>()
----> 1 del c['y']
/Users/tvu/anaconda/envs/py35/lib/python3.5/collections/__init__.py in __delitem__(self, key)
929 del self.maps[0][key]
930 except KeyError:
--> 931 raise KeyError('Key not found in the first mapping: {!r}'.format(key))
932
933 def popitem(self):
KeyError: "Key not found in the first mapping: 'y'"