好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

pythondictremove数组删除(del,pop)

比如代码

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}

查看更多关于pythondictremove数组删除(del,pop)的详细内容...

  阅读:58次