我刚刚开始使用 python 编程,我遇到了这个错误:
while True:
do smth
我似乎找不到停止循环的方法
我还没有找到任何可以停止循环以使程序的其余部分正常运行的东西,我想找到这样做的东西
只需声明一个布尔变量并将其设置为 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