美文网首页
python快捷启动线程,进程

python快捷启动线程,进程

作者: 望月成三人 | 来源:发表于2016-11-30 16:05 被阅读63次
    • 启动一个线程
     threading._start_new_thread(open_web_server,()) # open_web_server是自定义函数
    
    • 启动一个进程
    p = Process(target=open_web_server, args=()) 
    #open_web_server自定义函数,后面的arg里面是填自定义函数的参数,因为没参数,所以不填
    p.start()
    
    subprocess.Popen("taskkill /F /T /PID " + str(p.pid), shell=True) #杀死进程
    

    相关文章

      网友评论

          本文标题:python快捷启动线程,进程

          本文链接:https://www.haomeiwen.com/subject/fwdtmttx.html