pythonマルチスレッド方式は複数のbatコードを実行します。


pythonマルチスレッド方式で複数のbatコードを実行していますが、興味のある方は参考にしてください。

import threading
from win32api import *

class MyThread(threading.Thread):
  def __init__(self, bat_path, **kwargs):
    threading.Thread.__init__(self, **kwargs)
    self.bat_path = bat_path
    
  def run(self):
    ShellExecute(0, None, self.bat_path, None, "c:", True)
  
for i in range(1,4):
  t = MyThread("c: est" + str(i) + ".bat")
  t.start()
以上が本文の全部です。pythonプログラムの設計を勉強するのに役立ちます。