摘要: code def kill_process_by_pid(pid,process_name): print(f"正在尝试结束 {process_name} 进程...") subprocess.call(['taskkill','/F','/PID',str(pid)]) print(f"{proc 阅读全文
posted @ 2024-11-18 10:31 淋哥 阅读(5) 评论(0) 推荐(0) 编辑