python启动两个py文件

启动两个py

import subprocess
# 全部重算成本
import time
from concurrent.futures import ThreadPoolExecutor
# 同时处理的最大线程数,本示例中使用线程池,也可以使用进程池ProcessPoolExecutor,使用方法类似
executor = ThreadPoolExecutor(2)
def dade(info):
    print(info['exe'])
    try:
        subprocess.run(['python', info['exe']], shell=False)
    except subprocess.CalledProcessError as e:
        print(f"执行.exe文件时出错: {e}")
    except FileNotFoundError as e:
        print(f"可执行文件未找到: {e}")
    except Exception as e:
        print(f"其他未知错误: {e}")
executor.submit(dade, {"exe": "app.py"})
time.sleep(3)
executor.submit(dade, {"exe": "WinApp.py"})

启动两个exe

import subprocess
# 全部重算成本
import time
from concurrent.futures import ThreadPoolExecutor
# 同时处理的最大线程数,本示例中使用线程池,也可以使用进程池ProcessPoolExecutor,使用方法类似
executor = ThreadPoolExecutor(2)
def dade(info):
    print(info['exe'])
    try:
        subprocess.run([info['exe']], shell=False)
    except subprocess.CalledProcessError as e:
        print(f"执行.exe文件时出错: {e}")
    except FileNotFoundError as e:
        print(f"可执行文件未找到: {e}")
    except Exception as e:
        print(f"其他未知错误: {e}")
executor.submit(dade, {"exe": "app.exe"})
time.sleep(3)
executor.submit(dade, {"exe": "WinApp.exe"})
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

大得369

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值