JD wrote:
> Hello,
> 
> I try to remove a dictionary key-pair (remove an entry), 
> but I'm unsuccessful. Does anyone know how to achieve this?
> 
> Thanks

mydict = {"key" : "value"}
del mydict(key)

-- 
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in '[EMAIL PROTECTED]'.split('@')])"
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to