我注意到,在任何 python 3 程序上,无论它多么基本,如果按 CTRL c,它都会使程序崩溃,例如:
test=input("Say hello")
if test=="hello":
print("Hello!")
else:
print("I don't know what to reply I am a basic program without meaning :(")
如果您按 CTRL c 错误将是 KeyboardInterrupt 是否有阻止它使程序崩溃的方法?
我想这样做的原因是因为我喜欢让我的程序防错,并且每当我想将某些内容粘贴到输入中并且我不小心按了 CTRL c 时,我必须再次通过我的程序......这很烦人。