This commit is contained in:
2023-04-29 22:58:41 +08:00
parent b4c20606e6
commit 1f5cad3cd3

13
command.py Normal file
View File

@@ -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()