您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

在Python代码中获取ProcessId

在Python代码中获取ProcessId

如果使用子进程生成外壳,则可以在pid属性中找到进程ID :

sp = subprocess.Popen(['python', 'script.py'])
print('PID is ' + str(sp.pid))

如果您使用了多重处理,请使用 pid属性

p = multiprocessing.Process()
p.start()
# Some time later ...
print('PID is ' + str(p.pid))
python 2022/1/1 18:39:06 有230人围观

撰写回答


你尚未登录,登录后可以

和开发者交流问题的细节

关注并接收问题和回答的更新提醒

参与内容的编辑和改进,让解决方法与时俱进

请先登录

推荐问题


联系我
置顶