len(dict)

收藏:0   阅读:59

Python 字典(Dictionary) len()方法


描述

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

语法

len()方法语法:

len(dict)

参数

返回值

返回字典的元素个数。

实例

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

#!/usr/bin/python

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

以上实例输出结果为:

Length : 2
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!