Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 python cd 到另一个目录,我想在它运行的 shell 上执行这个命令以导航到该目录。
command = 'cd ../../../' os.popen(command)
这应该将我的外壳导航到新目录
import os os.chdir('/path/to/dir')
os.chdir 的文档在这里。