标签: python linux shell navigation popen
我想使用python cd到另一个目录,我希望在shell上运行此命令以导航到该目录。
command = 'cd ../../../' os.popen(command)
这应该将我的shell导航到新目录
答案 0 :(得分:2)
import os os.chdir('/path/to/dir')
os.chdir的文档是here。