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したい。
command = 'cd ../../../' os.popen(command)
これにより、シェルが新しいディレクトリに移動するはずです
import os os.chdir('/path/to/dir')
os.chdirのドキュメントはこちらです。