OSError: [WinError 123] 文件名、目录名或卷标语法不正确。
Traceback (most recent call last):
File "C:/Users/DELL/Desktop/lagou_knowledge_payment/lagou_pyplot.py", line 7, in <module>
os.chdir('\u202aC:/Users/DELL/Desktop')
OSError: [WinError 123] 文件名、目录名或卷标语法不正确。
修改前:
os.chdir('C:/Users/DELL/Desktop')
data = pd.read_excel('Test.xlsx')
修改后:
os.chdir('C:/Users/DELL/Desktop'.strip('\u202a'))
data = pd.read_excel('Test.xlsx')