Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #98811
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Persist objects in a LIST |
| Date | 2015-11-14 10:39 -0500 |
| Organization | IISS Elusive Unicorn |
| Message-ID | <mailman.327.1447515615.16136.python-list@python.org> (permalink) |
| References | <0cb1bcda-54d5-4cc7-bd23-f86f7f10ee28@googlegroups.com> <15f9fdeb-f4b4-4404-bccb-2e67a26035ed@googlegroups.com> |
On Sat, 14 Nov 2015 07:02:41 -0800 (PST), John Zhao <johnzzhao@gmail.com>
declaimed the following:
>I found a solution. replace bDict.clear() with bDict = {}
>
Which is creating a second, empty, dictionary and binding the name
"bDict" to that new one.
If all you want is to get rid of the name
del bDict
should suffice.
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Persist objects in a LIST John Zhao <johnzzhao@gmail.com> - 2015-11-14 06:26 -0800
Re: Persist objects in a LIST John Zhao <johnzzhao@gmail.com> - 2015-11-14 07:02 -0800
Re: Persist objects in a LIST Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-11-14 10:39 -0500
Re: Persist objects in a LIST Vincent Vande Vyvre <vincent.vande.vyvre@telenet.be> - 2015-11-14 17:33 +0100
csiph-web