|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
file:///C:/Users/44461/OneDrive/%E5%9B%BE%E7%89%87/%E5%B1%8F%E5%B9%95%E5%BF%AB%E7%85%A7/2020-08-07%20(1).png
各位大料求帮助
>>> f = open('‪E:\\kd.docx')
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
f = open('‪E:\\kd.docx')
OSError: [Errno 22] Invalid argument: '\u202aE:\\kd.docx'
>>> f = open('‪D:\\kd.docx')
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
f = open('‪D:\\kd.docx')
OSError: [Errno 22] Invalid argument: '\u202aD:\\kd.docx'
>>> f
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
f
NameError: name 'f' is not defined
>>> f = open('‪D:\\dkk.txt')
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
f = open('‪D:\\dkk.txt')
OSError: [Errno 22] Invalid argument: '\u202aD:\\dkk.txt'
|
|