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
相关文章
- Python 循环嵌套
- Python 集合
- Python 二叉树
- Python 算法设计
- Python3 SMTP发送邮件
- Python File seek() 方法
- Python os.closerange() 方法
- Python os.getcwd() 方法
- Python os.openpty() 方法
- Python os.popen() 方法
- Python os.readlink() 方法
- Python os.symlink() 方法
- Python capitalize()方法
- Python ljust()方法
- Python rfind()方法
- Python rjust()方法
- Python swapcase()方法
- Python upper()方法
- Python List cmp()方法
- Python List min()方法