Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 Python 还很陌生,并且一直在使用 Wing IDE 来玩转这些功能。我环顾四周时发现的一件事是如何在执行不会很快终止的命令时强制终止 Python shell。一个例子是:
import math math.factorial(1000000)
我知道在 Visual Studio C++ 中,命令是 Ctrl+C,但 Python 等价物到底是什么?
用于终止执行的方法因 shell 而异。对于 Wing IDE,您可以使用Options 菜单上的Restart Shell项。
这取决于你的外壳。对于大多数 shell,它是 ctrl-C,或者杀死进程。
在 python 中没有办法这样做(除非你正在产生线程或进程),因为有问题的线程被卡住了。