import  os
#显示当前工作目录
os.getcwd()
#设置新的工作目录
os.chdir("D:/python/test")
##或者用双斜线
os.chdir("D:\\python\\test")