在Python中,你不能直接使用cd
命令,因为它是Linux和macOS中的shell命令,用于更改当前工作目录
- 使用
os
模块:
import os # 切换到指定目录 os.chdir("path/to/your/directory") # 获取当前工作目录 current_directory = os.getcwd() print("当前工作目录:", current_directory)
- 使用
pathlib
模块(Python 3.4及更高版本):
from pathlib import Path # 切换到指定目录 path = Path("path/to/your/directory") path.resolve() # 获取当前工作目录 current_directory = str(Path.cwd()) print("当前工作目录:", current_directory)
这些方法可以让你在Python脚本中更改目录,从而提高操作效率。但请注意,这些方法仅适用于脚本和程序,而不是交互式Python shell。在交互式shell中,你需要使用cd
命令。