Python dictionary len() Method


Advertisements


Description

The method len() gives the total length of the dictionary. This would be equal to the number of items in the dictionary.

Syntax

Following is the syntax for len() method −

len(dict)

Parameters

  • dict − This is the dictionary, whose length needs to be calculated.

Return Value

This method returns the length.

Example

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

Live Demo
#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7};
print "Length : %d" % len (dict)

When we run above program, it produces following result −

Length : 2

python_dictionary.htm

Advertisements