比如代码
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}
您可能感兴趣的文章:对python中数组的del,remove,pop区别详解python删除列表元素的三种方法(remove,pop,del)Python列表删除元素del、pop()和remove()的区别小结
del
remove
pop
Python