import sys
def end():
foo=raw_input()
sys.exit()
print 'Press enter to Exit python and Terminal'
end()
当我们运行程序时,我们应该能够退出Python解释器和终端本身.
但它只退出python解释器,而不是终端.
提前致谢.
最佳答案
SIGHUP(挂断)会告诉终端退出.终端应该是您脚本的父进程,所以
原文链接:https://www.f2er.com/linux/440336.htmlimport os
import signal
os.kill(os.getppid(),signal.SIGHUP)