我需要通过python向Windows cmd发送多个命令。 我开始使用这个
os.system("start cmd /c adb -s "+self.name+" shell input tap 350 530")
问题是,如果我执行了10条指示,这将花费很长时间。 然后我尝试使用这种方式
subprocess.Popen("start cmd /c adb -s "+self.name+" shell input tap 350 530",shell=True)
它有所改善,但并不过分。
我认为问题在于它每次都会启动一个新的提示,那么发送10条此命令以提示而不关闭它的最快方法是什么?