第3章 第111节 Python 字典(Dictionary) len()方法

推荐给朋友

Python 字典(Dictionary) len()方法

描述

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

语法

len()方法语法:

len(dict)

参数

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

返回值

返回字典的元素个数。

实例

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

#!/usr/bin/python

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

以上实例输出结果为:

Length : 2