Python - 字典(dict)删除元素
Posted SpikeKing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python - 字典(dict)删除元素相关的知识,希望对你有一定的参考价值。
字典(dict)删除元素, 可以选择两种方式, dict.pop(key)和del dict[key].
代码
# -*- coding: utf-8 -*-
def remove_key(d, key):
r = dict(d)
del r[key]
return r
x = 1: 2, 3: 4, 4: 3, 2: 1, 0: 0
x.pop(1)
print x
x = 1: 2, 3: 4, 4: 3, 2: 1, 0: 0
del x[1]
print x
x = 1: 2, 3: 4, 4: 3, 2: 1, 0: 0
print remove_key(x, 1)
print x
"""
输出:
0: 0, 2: 1, 3: 4, 4: 3
0: 0, 2: 1, 3: 4, 4: 3
0: 0, 2: 1, 3: 4, 4: 3
0: 0, 1: 2, 2: 1, 3: 4, 4: 3
"""
以上是关于Python - 字典(dict)删除元素的主要内容,如果未能解决你的问题,请参考以下文章