os.getcwd, os.chdir:当前工作目录,改变当前工作目录
>>> import os
>>> os.getcwd() #获得当前的目录
'C:\\Python27\\ssss'
>>> os.makedirs("wuxiaobing") #新建下一级目录
>>> os.getcwd()
'C:\\Python27\\ssss'
>>> os.chdir("wuxiaobing") #改变当前目录
>>> os.getcwd()
'C:\\Python27\\ssss\\wuxiaobing'
>>>