标签:
>>> import os
>>> os.chdir("F:\python")
File "<pyshell#1>", line 1
os.chdir("F:\python")
^
IndentationError: unexpected indent
>>> os.chdir
<built-in function chdir>
>>> os.chdir("F:\python")
>>> print os.getcwd()
F:\python
标签:
原文地址:http://www.cnblogs.com/paullyblog/p/4774342.html