Python 永远 while 循环

问题描述 投票:0回答:1

我刚刚开始使用 python 编程,我遇到了这个错误:

while True:
  do smth

我似乎找不到停止循环的方法

我还没有找到任何可以停止循环以使程序的其余部分正常运行的东西,我想找到这样做的东西

python loops whitespace
1个回答
-1
投票

只需声明一个布尔变量并将其设置为 true 即可。然后执行 while 循环,其中变量等于 True。剩下的就做吧。

variable = True
while variable = True:
      Do something.

如果你想停止循环,那么可以编写一个 if 语句来确定必须满足什么条件才能停止循环。

variable = True
while variable = True:
      Do something.
      if the condition is met:
         variable = False
© www.soinside.com 2019 - 2024. All rights reserved.