当前位置:Gxlcms > Python > pythondictremove数组删除(del,pop)

pythondictremove数组删除(del,pop)

时间:2021-07-01 10:21:17 帮助过:9人阅读

比如代码

binfo = {'name':'jay','age':20,'python':'haha'}

print binfo.pop('name')#pop方法删除键,并且返回键对应的值

print binfo##输出结果:{'python': 'haha', 'age': 20}

del binfo['python']##内置方法删除元素

print binfo##输出结果:{'age': 20}

人气教程排行