# Python `len()`函数
> 原文: [https://thepythonguru.com/python-builtin-functions/len/](https://thepythonguru.com/python-builtin-functions/len/)
* * *
于 2020 年 1 月 7 日更新
* * *
`len()`函数计算对象中的项目数。
其语法如下:
```py
len(obj) -> length
```
| 参数 | 描述 |
| --- | --- |
| `obj` | `obj`可以是字符串,列表,字典,元组等。 |
这是一个例子:
```py
>>>
>>> len([1, 2, 3, 4, 5]) # length of list
5
>>>
>>> print(len({"spande", "club", "diamond", "heart"})) # length of set
4
>>>
>>> print(len(("alpha", "beta", "gamma"))) # length of tuple
3
>>>
>>> print(len({ "mango": 10, "apple": 40, "plum": 16 })) # length of dictionary
3
```
试试看:
```py
# length of list
print(len([1, 2, 3, 4, 5]))
# length of set
print(len({"spande", "club", "diamond", "heart"}))
# length of tuple
print(len(("alpha", "beta", "gamma")))
# length of dictionary
print(len({ "mango": 10, "apple": 40, "plum": 16 }))
```
具有讽刺意味的是,`len()`函数不适用于生成器。 尝试在生成器对象上调用`len()`将导致`TypeError`异常。
```py
>>>
>>> def gen_func():
... for i in range(5):
... yield i
...
>>>
>>>
>>> len(gen_func())
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: object of type 'generator' has no len()
>>>
```
试一试:
```py
def gen_func():
for i in range(5):
yield i
print(len(gen_func()))
```
## `len()`与用户定义的对象
* * *
要在用户定义的对象上使用`len()`,您将必须实现`__len__()`方法。
```py
>>>
>>> class Stack:
...
... def __init__(self):
... self._stack = []
...
... def push(self, item):
... self._stack.append(item)
...
... def pop(self):
... self._stack.pop()
...
... def __len__(self):
... return len(self._stack)
...
>>>
>>> s = Stack()
>>>
>>> len(s)
0
>>>
>>> s.push(2)
>>> s.push(5)
>>> s.push(9)
>>> s.push(12)
>>>
>>> len(s)
4
>>>
```
试一试:
```py
class Stack:
def __init__(self):
self._stack = []
def push(self, item):
self._stack.append(item)
def pop(self):
self._stack.pop()
def __len__(self):
return len(self._stack)
s = Stack()
print(len(s))
s.push(2)
s.push(5)
s.push(9)
s.push(12)
print(len(s))
```
* * *
* * *
- 初级 Python
- python 入门
- 安装 Python3
- 运行 python 程序
- 数据类型和变量
- Python 数字
- Python 字符串
- Python 列表
- Python 字典
- Python 元组
- 数据类型转换
- Python 控制语句
- Python 函数
- Python 循环
- Python 数学函数
- Python 生成随机数
- Python 文件处理
- Python 对象和类
- Python 运算符重载
- Python 继承与多态
- Python 异常处理
- Python 模块
- 高级 Python
- Python *args和**kwargs
- Python 生成器
- Python 正则表达式
- 使用 PIP 在 python 中安装包
- Python virtualenv指南
- Python 递归函数
- __name__ == "__main__"是什么?
- Python Lambda 函数
- Python 字符串格式化
- Python 内置函数和方法
- Python abs()函数
- Python bin()函数
- Python id()函数
- Python map()函数
- Python zip()函数
- Python filter()函数
- Python reduce()函数
- Python sorted()函数
- Python enumerate()函数
- Python reversed()函数
- Python range()函数
- Python sum()函数
- Python max()函数
- Python min()函数
- Python eval()函数
- Python len()函数
- Python ord()函数
- Python chr()函数
- Python any()函数
- Python all()函数
- Python globals()函数
- Python locals()函数
- 数据库访问
- 安装 Python MySQLdb
- 连接到数据库
- MySQLdb 获取结果
- 插入行
- 处理错误
- 使用fetchone()和fetchmany()获取记录
- 常见做法
- Python:如何读取和写入文件
- Python:如何读取和写入 CSV 文件
- 用 Python 读写 JSON
- 用 Python 转储对象