在Python中,你可以使用os
模块或subprocess
模块来执行系统命令
os
模块的system()
函数:import os
command = "ls" # 这里可以替换为你想要执行的命令
os.system(command)
subprocess
模块的run()
函数:import subprocess
command = "ls" # 这里可以替换为你想要执行的命令
subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
注意:在使用subprocess
模块时,建议使用run()
函数,因为它提供了更多的功能和更好的错误处理。system()
函数已经被弃用,不建议在新代码中使用。