是的,os.system()
函数可以执行多条命令,但是需要注意的是,这些命令之间需要用分号(;
)或者双和号(&&
)分隔
例如:
import os
os.system("command1 ; command2 ; command3")
或者:
import os
os.system("command1 && command2 && command3")
但是,使用 os.system()
执行多条命令并不是最佳实践。更好的方法是使用 subprocess
模块,它提供了更多的功能和更好的错误处理。例如:
import subprocess
subprocess.run(["command1", "command2", "command3"], shell=True, check=True)