Python 字典(Dictionary) len()方法
Python 教程
· 2019-02-03 09:58:31
描述
Python 字典(Dictionary) len() 函数计算字典元素个数,即键的总数。
语法
len()方法语法:
len(dict)
参数
- dict -- 要计算元素个数的字典。
返回值
返回字典的元素个数。
实例
以下实例展示了 len()函数的使用方法:
#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7};
print "Length : %d" % len (dict)
以上实例输出结果为:
Length : 2
点击查看所有 Python 教程 文章: https://www.codercto.com/courses/l/8.html
Paradigms of Artificial Intelligence Programming
Peter Norvig / Morgan Kaufmann / 1991-10-01 / USD 77.95
Paradigms of AI Programming is the first text to teach advanced Common Lisp techniques in the context of building major AI systems. By reconstructing authentic, complex AI programs using state-of-the-......一起来看看 《Paradigms of Artificial Intelligence Programming》 这本书的介绍吧!