1 Commits

Author SHA1 Message Date
1f5cad3cd3 chatGPT 2023-04-29 22:58:41 +08:00

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