python3.4读写.txt文件出错,而。py文件正常?

来源:2-1 python文件操作之文件打开方式

abc通配符123_

2017-09-04 12:58

>>> f=open("D:\\python34\2.txt",'w')
Traceback (most recent call last):
  File "<pyshell#19>", line 1, in <module>
    f=open("D:\\python34\2.txt",'w')
OSError: [Errno 22] Invalid argument: 'D:\\python34\x02.txt'
>>> f=open("D:\\python34\safdsf.py",'w')

写回答 关注

1回答

  • 慕侠530674
    2017-09-04 15:02:43

    修改成:D:\\python34\\02.txt

Python文件处理

Python文件操作指南,掌握os模块对文件和目录的处理

88454 学习 · 107 问题

查看课程

相似问题