IOError: [Errno 22] invalid mode (‘r’) or filename: ‘c:\Python27test.txt’

What is wrong with the following:

test_file=open('c:\Python27test.txt','r')

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

t is a tab character. Use a raw string instead:

test_file=open(r'c:Python27test.txt','r')

or double the slashes:

test_file=open('c:\Python27\test.txt','r')

or use forward slashes instead:

test_file=open('c:/Python27/test.txt','r')

Method 2

always use ‘r’ to get a raw string when you want to avoid escape.

test_file=open(r'c:Python27test.txt','r')

Method 3

is an escape character in Python. t gets interpreted as a tab. If you need character in a string, you have to use \.

Your code should be:
test_file=open('c:\Python27\test.txt','r')

Method 4

t in a string marks an escape sequence for a tab character. For a literal , use \.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x