标签: python while-loop crash interpreter pyscripter
while 1: print("1")
和此:
i = 0 while i < 1000000: print(i) i = i + 1
两者都崩溃了。 知道该怎么办吗?! 我把它缩小到了while循环,但我仍然无法找到问题。 (任何人都有吗?) 有任何想法吗?现在寻找超过5小时,仍然不知道这是怎么发生的...... 程序运行,但大约5秒后程序崩溃。