Python 字典 Dictionary len()方法

Python 字典 DictionaryPython 字典 Dictionary

Python 字典(Dictionary) len() 函数计算字典元素个数,即键的总数。

 

语法

len()方法语法:

len(dict)

 

参数

  • dict -- 要计算元素个数的字典。

 

返回值

返回字典的元素个数。

 

实例

以下实例展示了 len()函数的使用方法:

#!/usr/bin/python

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

以上实例输出结果为:

Length : 2

Python 字典 DictionaryPython 字典 Dictionary

Python 字典 Dictionary str()方法:Python 字典(Dictionary) str() 函数将值转化为适于人阅读的形式,以可打印的字符串表示。str()方法语法:str(dict)。参数:dict -- 字典。返回值:返回字符串。