本文介绍了IOError: [Errno 22] 无效模式 ('r') 或文件名:'c:\Python27est.txt'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下有什么问题:
test_file=open('c:\Python27 est.txt','r')
推荐答案
是制表符.改用原始字符串:
is a tab character. Use a raw string instead:
test_file=open(r'c:Python27 est.txt','r')
或双斜线:
test_file=open('c:\Python27\test.txt','r')
或使用正斜杠代替:
test_file=open('c:/Python27/test.txt','r')
这篇关于IOError: [Errno 22] 无效模式 ('r') 或文件名:'c:\Python27est.txt'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!