這篇文章我們來學習一下關於python字典之中的python items函數的相關知識,items函數是什麼意思,這個函數有什麼作用都會在接下來的文章之中得到解答。
描述
Python 字典(Dictionary) items() 函數以列表傳回可遍歷的(鍵, 值) 元組數組。
語法
items()方法語法:
dict.items()
參數
傳回值
傳回可遍歷的(鍵, 值) 元組陣列。實例
以下實例展示了items()函數的使用方法:# !/usr/bin/python # coding=utf-8 dict = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'} print "字典值 : %s" % dict.items() # 遍历字典列表 for key, values in dict.items(): print key, values
字典值 : [('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('Runoob', 'www.runoob.com')] Google www.google.com taobao www.taobao.com Runoob www.runoob.com
Python教學欄位。
以上是什麼是python items函數?怎麼使用它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!