Files
chatGPT/command.py
2023-05-03 03:57:44 +00:00

14 lines
208 B
Python

import os
from time import sleep
def run_cmd():
print("正在启动")
sleep(0.5)
for i in range(4):
os.system("start powershell")
pass
pass
sleep(0.2)
run_cmd()