如何设置当前工作目录?
如何在Python中设置当前工作目录?
试试os.chdir
os.chdir(path)
将当前工作目录更改为path。 可用性:Unix,Windows。
也许这就是你要找的东西:
import os os.chdir(default_path)
import os; print os.getcwd(); # Prints the working directory
要设置工作目录:
os.chdir('c:\\Users\uname\desktop\python') # Provide the path here
人们使用pandas包
import os import pandas as pd tar = os.chdir('<dir path only>') # do not mention file name here print os.getcwd()# to print the path name in CLI
以下用于在Python CLI中导入文件的语法
dataset(*just a variable) = pd.read_csv('new.csv')
它也适用于Mac
import os path="/Users/HOME/Desktop/Addl Work/TimeSeries-Done" os.chdir(path)
检查工作目录
os.getcwd()
您需要导入os
模块,然后您可以使用chdir()
方法,但不要忘记在括号内使用引号( ''
):
import os os.chdir('default_path')