标签: python dictionary
我找到了两种方法:
del dict[key]
VS
dict.pop(key)
哪一个更好,为什么,或者还有更多?
答案 0 :(得分:1)
del通常比pop()快。
看一下这个讨论Best way to remove an item from a Python dictionary?