Python dictionary items() Method


Advertisements


Description

The method items() returns a list of dict's (key, value) tuple pairs

Syntax

Following is the syntax for items() method −

dict.items()

Parameters

  • NA

Return Value

This method returns a list of tuple pairs.

Example

The following example shows the usage of items() method.

Live Demo
#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7}
print "Value : %s" %  dict.items()

When we run above program, it produces following result −

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

python_dictionary.htm

Advertisements