Python3 字典 popitem() 方法

Python 3 教程 · 2019-02-06 17:44:18

描述

Python 字典 popitem() 方法随机返回并删除字典中的一对键和值(一般删除末尾对)。

如果字典已经为空,却调用了此方法,就报出KeyError异常。

语法

popitem()方法语法:

popitem()

参数

返回值

返回一个键值对(key,value)形式。

实例

以下实例展示了 popitem() 方法的使用方法:

#!/usr/bin/python3

site= {'name': '码农教程', 'alexa': 10000, 'url': 'www.codercto.com'}
pop_obj=site.popitem()
print(pop_obj)   
print(site)

输出结果为:

('url', 'www.codercto.com')
{'name': '码农教程', 'alexa': 10000}

点击查看所有 Python 3 教程 文章: https://www.codercto.com/courses/l/10.html

查看所有标签

Graph Algorithms

Graph Algorithms

Shimon Even / Cambridge University Press / 2011-9-19 / USD 32.99

Shimon Even's Graph Algorithms, published in 1979, was a seminal introductory book on algorithms read by everyone engaged in the field. This thoroughly revised second edition, with a foreword by Richa......一起来看看 《Graph Algorithms》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

SHA 加密
SHA 加密

SHA 加密工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具