开发者

How to set the current working directory? [duplicate]

This question already has answers here: Equivalent of shell 'cd' command to change the working directory? (14 an开发者_开发知识库swers) Closed 4 years ago.

How to set the current working directory in Python?


Try os.chdir

import os
os.chdir(path)

        Change the current working directory to path. Availability: Unix, Windows.


Perhaps this is what you are looking for:

import os
os.chdir(default_path)


import os
print os.getcwd()  # Prints the current working directory

To set the working directory:

os.chdir('c:\\Users\\uname\\desktop\\python')  # Provide the new path here


It work for Mac also

import os
path="/Users/HOME/Desktop/Addl Work/TimeSeries-Done"
os.chdir(path)

To check working directory

os.getcwd()


people using pandas package

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

the following syntax to be used to import the file in python CLI

dataset(*just a variable) = pd.read_csv('new.csv')
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜