测试积点老人 发表于 2021-8-12 13:41:56

python while True 不能关闭,需要如何退出

执行这个循环时不能关闭要怎么解决?
while True:
    i=0
    i+=1
    if i==7:   
      print(i)
      break


海海豚 发表于 2021-8-13 10:10:37

https://bbs.csdn.net/topics/190103414参考下这个

qqq911 发表于 2021-8-13 10:44:35

i =0 放在循坏外面
页: [1]
查看完整版本: python while True 不能关闭,需要如何退出