我对 Python 很陌生。这是我的代码:
def start(self, widget):
s = subprocess.Popen('myprocess')
def stop(self, widget):
#what to put here?
我在 Ubuntu 上。在第一个函数中,我启动了一个需要 CTRL+C 来终止的进程。我必须在停止函数中输入哪些指令来终止进程?
非常感谢您提前。
我对 Python 很陌生。这是我的代码:
def start(self, widget):
s = subprocess.Popen('myprocess')
def stop(self, widget):
#what to put here?
我在 Ubuntu 上。在第一个函数中,我启动了一个需要 CTRL+C 来终止的进程。我必须在停止函数中输入哪些指令来终止进程?
非常感谢您提前。