交互式控制台在多处理中不起作用
Python 3.6
from multiprocessing import Process
import code
def t_interactive():
code.interact(local=locals())
if __name__=="__main__":
t2=Process(target=t_interactive)
t2.start()
t2.join()
我想让一个程序在用户使用解释器时在后台运行,但是它一直在退出。