Python:多线程执行多个py文件

修复Python多线程中target函数调用的错误,

如下图,需要同时运行scendSignal.py和screen_record.py文件。将运行指令分别封装到sendSignal()和screenRecord()方法内,并通过Thread执行。

需要注意的是:运用threading.Thread(target = )方法时,等号后面的方法名不能加括号!

例如,

thread1 = threading.Thread(target=screenRecord()),

thread2 = threading.Thread(target=sendSignal())错误,这样会导致两个t方法被顺序执行。

需要改为

thread1 = threading.Thread(target=screenRecord)

thread2 = threading.Thread(target=sendSignal)

错误代码:

import threading
import os


def sendSignal():
    os.system('python3.9 sendSignal.py')

def screenRecord():
    os.system('python3.9 screen_record.py')


if __name__=='__main__':
    thread1 = threading.Thread(target=screenRecord())
    thread2 = threading.Thread(target=sendSignal())

    thread1.start()
    thread2.start()
评论 1
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值