Python 字典 Dictionary popitem() 方法
Python 字典 Dictionary popitem() 方法
Python 字典 popitem() 方法返回并删除字典中的最后一对键和值。
如果字典已经为空,却调用了此方法,就报出 KeyError 异常。
语法
popitem()方法语法:
popitem()
参数
- 无
返回值
返回一个键值对(key,value)形式。
实例
以下实例展示了 popitem() 方法的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- site= {'name': '<a href="http://www.yapf.com" target="_blank">硕编程</a>', 'alexa': 10000, 'url': 'www.yapf.com'} pop_obj=site.popitem() print(pop_obj) print(site)
输出结果为:
('url', 'www.yapf.com') {'alexa': 10000, 'name': '<a href="http://www.yapf.com" target="_blank">硕编程</a>'}
相关文章
- Python 循环语句
- Python 数据结构
- Python 树遍历算法
- Python3 基础语法
- Python3 if else 语句
- Python3 函数
- Python3 正则表达式
- Python os.chflags() 方法
- Python os.fdopen() 方法
- Python os.link() 方法
- Python os.makedirs() 方法
- Python os.mkfifo() 方法
- Python os.remove() 方法
- Python os.utime() 方法
- Python expandtabs()方法
- Python lower()方法
- Python lstrip()方法
- Python startswith()方法
- Python Tuple 元组 max()方法
- Python time localtime()方法