Python 基礎(chǔ)教程
Python 字典(Dictionary) items() 函數(shù)以列表返回可遍歷的(鍵, 值) 元組數(shù)組。
items()方法語(yǔ)法:
dict.items()
返回可遍歷的(鍵, 值) 元組數(shù)組。
以下實(shí)例展示了 items()函數(shù)的使用方法:
以上實(shí)例輸出結(jié)果為:
字典值 : [('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('Runoob', '')] Google www.google.com taobao www.taobao.com Runoob其他擴(kuò)展