From 3e7bfb617ae9e298320a824a84a9ff4339d21afb Mon Sep 17 00:00:00 2001 From: dengrb1 <125752069+dengrb1@users.noreply.github.com> Date: Sat, 29 Apr 2023 23:12:16 +0800 Subject: [PATCH] Add files via upload --- command.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 command.py diff --git a/command.py b/command.py new file mode 100644 index 0000000..b29531f --- /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()