Dictionary items() Method



Description

Following is the syntax for items() method −

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.

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_methods.htm
Advertisements