如何在 Windows 中生成键盘中断?
while True:
try:
print 'running'
except KeyboardInterrupt:
break
我希望CTRL+C停止这个程序,但它不起作用。
如何在 Windows 中生成键盘中断?
while True:
try:
print 'running'
except KeyboardInterrupt:
break
我希望CTRL+C停止这个程序,但它不起作用。