2012年10月7日 星期日

py dictionary delete key pair

>>> def delete_key(dict, key):
... del dict[key]
... return dict
... 
>>> test_dict = {'one': 1, 'two' : 2}
>>> print delete_key(test_dict, 'two')
{'one': 1}
>>>

沒有留言: