diff --git a/command.py b/command.py new file mode 100644 index 0000000..db09c5d --- /dev/null +++ b/command.py @@ -0,0 +1,13 @@ +import os +from time import sleep + +def run_cmd(): + print("正在启动") + sleep(0.5) + for i in range(3): + os.system("start powershell") + pass + pass + +sleep(0.2) +run_cmd()