for-else语句python
时间: 2023-12-11 22:31:51 浏览: 78
在Python中,for-else语句可以在for循环完整个循环后执行一些操作。如果for循环中没有遇到break语句,则会执行else语句块。下面是一个简单的例子:
```python
nums = [1, 2, 3, 4, 5]
for num in nums:
if num == 0:
print("There is a zero in the list")
break
else:
print("There are no zeros in the list")
```
在这个例子中,我们遍历了一个列表,并检查其中是否有0。由于列表中没有0,因此for循环会完整地执行,然后执行else语句块,输出"There are no zeros in the list"。
阅读全文