• 技术文章 >常见问题 >Python常见问题

    python字典怎么删除键

    silencementsilencement2020-02-14 17:32:26原创5195

    Python中的字典是另一种可变容器模型,且可存储任意类型对象。键一般是唯一的,如果重复最后的一个键值对会替换前面的,值不需

    要唯一。

    Python删除字典元素的4种方法

    1. Python字典的clear()方法(删除字典内所有元素)

    #!/usr/bin/python
    # -*- coding: UTF-8 -*-
    dict = {'name': '我的博客地址', 'alexa': 10000, 'url': 'http://blog.csdn.net/uuihoo/'}
    dict.clear();  # 清空词典所有条目

    2. Python字典的pop()方法(删除字典给定键 key 所对应的值,返回值为被删除的值)

    #!/usr/bin/python
    # -*- coding: UTF-8 -*-
    site= {'name': '我的博客地址', 'alexa': 10000, 'url':'http://blog.csdn.net/uuihoo/'}
    pop_obj=site.pop('name') # 删除要删除的键值对,如{'name':'我的博客地址'}这个键值对
    print pop_obj   # 输出 :我的博客地址

    3. Python字典的popitem()方法(随机返回并删除字典中的一对键和值)

    #!/usr/bin/python
    # -*- coding: UTF-8 -*-
    site= {'name': '我的博客地址', 'alexa': 10000, 'url':'http://blog.csdn.net/uuihoo/'}
    pop_obj=site.popitem() # 随机返回并删除一个键值对
    print pop_obj   # 输出结果可能是{'url','http://blog.csdn.net/uuihoo/'}

    4. del 全局方法(能删单一的元素也能清空字典,清空只需一项操作)

    #!/usr/bin/python
    # -*- coding: UTF-8 -*-
    site= {'name': '我的博客地址', 'alexa': 10000, 'url':'http://blog.csdn.net/uuihoo/'}
    del site['name'] # 删除键是'name'的条目 
    del site  # 清空字典所有条目

    推荐学习《Python教程》。

    专题推荐:dict
    上一篇:python怎样计算函数的返回值 下一篇:python如何去掉文本中的符号

    相关文章推荐

    • 多种方法合并Python中的两个列表、字典• 如何判断python字典的key是否存在

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网