Python items() メソッドの使用方法?
Python Dictionary (Dictionary) items() メソッド
Python Dictionary (Dictionary) items() 関数は、リスト内の走査可能な (キー、値) を返します。タプルの配列。
推奨: 「Python チュートリアル 」
文法
##items() メソッドの構文:dict.items()
#!/usr/bin/python # coding=utf-8 dict = {'Google': 'www.google.com', 'Runoob': 'm.sbmmt.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', 'm.sbmmt.com')] Google www.google.com taobao www.taobao.com php m.sbmmt.com
以上がPython items() メソッドの使用方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。