我要访问的文件夹称为python,位于我的桌面上。
尝试获取以下错误
>>> os.chdir('C:\Users\expoperialed\Desktop\Python') SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
你需要使用原始字符串,将斜杠加倍或使用正斜杠:
r'C:\Users\expoperialed\Desktop\Python' 'C:\\Users\\expoperialed\\Desktop\\Python' 'C:/Users/expoperialed/Desktop/Python'
在常规python字符串中,\U字符组合表示扩展的Unicode代码点转义。
\U
Unicode
对于任何已识别的转义序列,例如\aor t或\x等,你都可以遇到许多其他问题。
\aor t
\x