python 判断list是否为空
时间: 2024-02-25 21:50:44 浏览: 91
81.对list进行切片共3页.pdf.zip
以下是两种判断列表是否为空的方法:
1. 使用len()函数判断列表是否为空[^1]:
```python
list = []
if len(list) == 0:
print('list is empty')
```
2. 使用if语句判断列表是否为空[^2]:
```python
list_temp = []
if not list_temp:
print('list_temp is empty')
```
阅读全文