python在使用绝对路径时出现OSError: [Errno 22] Invalid argument: ‘E:\python\python扩展\text_file\pi_digits.txt

今天我在练习python文件的绝对路径时发现OSError: [Errno 22] Invalid argument: ‘E:\python\python扩展\text_file\pi_digits.txt’ 这个错误,我怎么也找不到错误。后来我在发现是转义字符出现了问题。
废话不多说,直接上代码
(注意:我使用的操练系统是win10)
我出错的代码:

with open('E:\python\\python扩展\text_file\pi_digits.txt') as file_text1: text1 = file_text1.read() print(text1)

错误:python在使用绝对路径时出现OSError: [Errno 22] Invalid argument: ‘E:\python\python扩展\text_file\pi_digits.txt
文章图片

我找了很多,才发现错误,是转义字符出现问题。
转义字符
有时候需要在字符中使用特殊字符时,python用反斜杠()转义字符 。恰好win10在使用文件路径时有两种方式:一种是单(\)另一种是双(\)
我在上面代码中文件路径为:E:\python\python扩展\text_file\pi_digits.txt
python的解释器默认了(\)为转义字符,所以报错。
如何修改:有两种方式,大家可以参考
第一种 将(\)全部换成双(\)
with open('E:\\python\\python扩展\\text_file\\pi_digits.txt') as file_text1: text1 = file_text1.read() print(text1)

结果
python在使用绝对路径时出现OSError: [Errno 22] Invalid argument: ‘E:\python\python扩展\text_file\pi_digits.txt
文章图片

第二种 加上r
with open(r'E:\python\python扩展\text_file\pi_digits.txt') as file_text1: text1 = file_text1.read() print(text1)

结果
python在使用绝对路径时出现OSError: [Errno 22] Invalid argument: ‘E:\python\python扩展\text_file\pi_digits.txt
文章图片

使用“r”原因如下:有时我们并不想让转义字符生效,我们只想显示字符串原来的意思,这就要用r和R来定义原始字符串。如:
print(r'\t')

结果为:\t
python常用的转义字符有
(在行尾时) 续行符
\ 反斜杠符号
’ 单引号
" 双引号
\a 响铃
\b 退格(Backspace)
\e 转义
\000 空
\n 换行
\v 纵向制表符
\t 横向制表符
\r 回车
\f 换页
\oyy 八进制数yy代表的字符,例如:\o12代表换行
\xyy 十进制数yy代表的字符,例如:\x0a代表换行
\other 其它的字符以普通格式输出
【python在使用绝对路径时出现OSError: [Errno 22] Invalid argument: ‘E:\python\python扩展\text_file\pi_digits.txt】谢谢大家阅读,如果帮助到大家希望大家点赞加收藏!!!

    推荐阅读