本文介绍了如何在python中清除字典的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我创建一个这样的词典

myDict = {}


我添加像这样的条目:

myDict [''a''] = 1

但我怎么能清空整本字典呢?


谢谢。

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.

推荐答案



阅读Python文档可能有所帮助。

但之前,我会尝试一个目录(myDict)。

也许你会找到一个复活节彩蛋

,它的名字正是你想要的名字?


欢呼 - 克里斯

Reading the Python docs might help.
But before, I would try a dir(myDict).
Maybe you will find an easter-egg
which has exactly the name you are looking for?

cheers - chris




再次将myDict指向空字典


myDict = {}


拉里贝茨

just point myDict to an empty dictionary again

myDict={}

Larry Bates




模块__builtin__中类dict的帮助:


class dict(object)

(...)

|这里定义的方法:

(...)

|

|清楚(...)

| D.clear() - 没人。从D.删除所有项目。

(...)

Help on class dict in module __builtin__:

class dict(object)
(...)
| Methods defined here:
(...)
|
| clear(...)
| D.clear() -None. Remove all items from D.
(...)



{''a'':1,''b'':2}

{''a'': 1, ''b'': 2}



{}

{}


这篇关于如何在python中清除字典的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 01:54