Python 字典 Dictionary items()方法
Python 字典 Dictionary items()方法
Python 字典(Dictionary) items() 函數以列表返回可遍歷的(鍵, 值) 元組數組。
語法
items()方法語法:
dict.items()
參數
- NA。
返回值
返回可遍歷的(鍵, 值) 元組數組。
實例
以下實例展示了 items()函數的使用方法:
#!/usr/bin/python # coding=utf-8 dict = {'Google': 'www.google.com', 'codebaoku': 'www.codebaoku.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'), ('codebaoku', 'www.codebaoku.com')] Google www.google.com taobao www.taobao.com codebaoku www.codebaoku.com
相關文章
- Python 變量類型
- Python 條件語句
- Python Number 數字
- Python 字典 Dictionary
- Python 網絡編程
- Python 二維數組
- Python 棧
- Python 回溯
- Python3 函數
- Python3 多線程
- Python os.close() 方法
- Python os.closerange() 方法
- Python os.rmdir() 方法
- Python os.tcsetpgrp() 方法
- Python os.tmpnam() 方法
- Python os.path() 模塊
- Python min()方法
- Python List index()方法
- Python 字典 Dictionary str()方法
- Python 字典 Dictionary pop() 方法