Python 字典 Dictionary popitem() 方法
Python 字典 Dictionary popitem() 方法
Python 字典 popitem() 方法返回并刪除字典中的最后一對鍵和值。
如果字典已經(jīng)為空,卻調(diào)用了此方法,就報出 KeyError 異常。
語法
popitem()方法語法:
popitem()
參數(shù)
- 無
返回值
返回一個鍵值對(key,value)形式。
實例
以下實例展示了 popitem() 方法的使用方法:
#!/usr/bin/python # -*- coding: UTF-8 -*- site= {'name': '<a href="http://" target="_blank">碩編程</a>', 'alexa': 10000, 'url': ''} pop_obj=site.popitem() print(pop_obj) print(site)
輸出結(jié)果為:
('url', '') {'alexa': 10000, 'name': '<a href="http://" target="_blank">碩編程</a>'}
相關(guān)文章
- Python 循環(huán)語句
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 樹遍歷算法
- Python3 基礎(chǔ)語法
- Python3 if else 語句
- Python3 函數(shù)
- 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()方法