位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python——删除任意键值对

提问人:杨紫红发布时间:2020-11-20

d9 = {1:"one", 2:"two", 3:"three"}

print d9.pop(1) #one

print d9 #{2: 'two', 3: 'three'}

print d9.pop(5, None) #None

try:

    d9.pop(5)  # raise KeyError

except KeyError, ke:

    print  "KeyError:", ke #KeyError:5


    popitem()  ---删除任意键值对,并返回该键值对,如果字典为空,则产生异常KeyError

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部