Я сделал папку на своем рабочем столе с именем "headfirstpython", и мне нужно изменить текущий рабочий каталог на эту папку и на ее внутреннюю папку. Я использовал os.getcwd(), чтобы получить текущую папку, и это дает мне "C\Python32". Я использовал os.chdir('../headfirstpython/chapter3'), чтобы изменить каталог, но он говорит, что не может найти путь
>>> import os
>>> os.getcwd()
'C:\\Python32'
>>> os.chdir('../headfirstpython/chapter 3')
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
os.chdir('../headfirstpython/chapter 3')
WindowsError: [Error 3] The system cannot find the path specified: '../headfirstpython/chapter 3'
>>> os.chdir('../headfirstpython/chapter3')
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
os.chdir('../headfirstpython/chapter3')
WindowsError: [Error 3] The system cannot find the path specified: '../headfirstpython/chapter3'
>>>