我对编码相当陌生,想打开CMD在其中运行命令。
import autoit
import time
autoit.run("cmd.exe")
autoit.win_wait_active("[CLASS:Command]", 3)
autoit.control_send("[CLASS:Command]", "Edit1", "hello world{!}")
我只是想加载CMD并在其中运行我选择的命令。
谢谢:)
您可以尝试使用subprocess
模块-
import subprocess
p = subprocess.Popen(["start", "cmd", "/k", "Command_Here"], shell = True)