JD>I try to remove a dictionary key-pair (remove an entry),
>>> d = {1:2, 3:4}
>>> d
{1: 2, 3: 4}
>>> del d[1]
>>> d
{3: 4}Bye, bearophile -- http://mail.python.org/mailman/listinfo/python-list
JD>I try to remove a dictionary key-pair (remove an entry),
>>> d = {1:2, 3:4}
>>> d
{1: 2, 3: 4}
>>> del d[1]
>>> d
{3: 4}Bye, bearophile -- http://mail.python.org/mailman/listinfo/python-list