[EMAIL PROTECTED] wrote:
> Hi,
> 
> I create a dictionary like this
> myDict = {}
> 
> and I add entry like this:
> myDict['a'] = 1
> but how can I empty the whole dictionary?
> 
> Thank you.
> 

just point myDict to an empty dictionary again

myDict={}

Larry Bates

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to