在Python中同时运行两个命令可以使用多线程或多进程的方式实现。下面是两种常见的实现方式:
import threading
import os
def command1():
os.system("command1")
def command2():
os.system("command2")
if __name__ == "__main__":
thread1 = threading.Thread(target=command1)
thread2 = threading.Thread(target=command2)
thread1.start()
thread2.start()
thread1.join()
thread2.join()
上述代码中,通过threading.Thread
创建了两个线程,分别运行command1
和command2
函数。然后使用start
方法启动线程,使用join
方法等待线程执行完毕。
import multiprocessing
import os
def command1():
os.system("command1")
def command2():
os.system("command2")
if __name__ == "__main__":
process1 = multiprocessing.Process(target=command1)
process2 = multiprocessing.Process(target=command2)
process1.start()
process2.start()
process1.join()
process2.join()
上述代码中,通过multiprocessing.Process
创建了两个进程,分别运行command1
和command2
函数。然后使用start
方法启动进程,使用join
方法等待进程执行完毕。
以上两种方式都可以实现在Python中同时运行两个命令。具体选择使用多线程还是多进程取决于具体的需求和场景。
领取专属 10元无门槛券
手把手带您无忧上云