python for 下的while TRue循环如何直接退出for循环
时间: 2023-06-29 15:15:32 浏览: 85
python退出循环的方法
你可以使用 `break` 关键字来直接退出 `for` 循环。例如:
```python
for i in range(10):
while True:
if some_condition: # 满足某个条件时退出循环
break # 直接退出 while 循环
if some_other_condition: # 满足某个条件时退出 for 循环
break # 直接退出 for 循环
```
在上面的代码中,当满足 `some_other_condition` 时,使用 `break` 关键字直接退出 `for` 循环。
阅读全文