刚开始学习一些 Python,我遇到了如下所述的问题:
a_file = open('E:\Python Win7-64-AMD 3.3\Test', encoding='utf-8')
Traceback (most recent call last):
File "<pyshell#9>", line 1, in <module>
a_file = open('E:\Python Win7-64-AMD 3.3\Test', encoding='utf-8')
PermissionError: [Errno 13] Permission denied: 'E:\\Python Win7-64-AMD 3.3\\Test\
似乎是文件权限错误,如果有人能发光,将不胜感激。
注意:不确定 Python 和 Windows 文件是如何工作的,但我以管理员身份登录到 Windows,并且该文件夹具有管理员权限。
我尝试更改.exe
属性以以管理员身份运行。