位置:首頁 > 腳本語言 > Python教學 > Python dict.items()方法

Python dict.items()方法

items()方法返回字典的(鍵,值)元組對的列表

語法

以下是items()方法的語法:

dict.items()

參數

  • NA

返回值

此方法返回元組對的列表。

例子

下麵的例子顯示了items()方法的使用。

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7}

print "Value : %s" %  dict.items()

當我們運行上麵的程序,它會產生以下結果:

Value : [('Age', 7), ('Name', 'Zara')]