标签:使用 rac byte details osi log lin malformed linu
路径错误。主要可能因为斜杠造成的。window 读取文件可以用\,但是在字符串中\是被当作转义字符来使用,所以‘d:\a.txt‘会被转义成‘d:\a.txt‘这是正确路径,所以不会报错。例如\t可能就转义成tab键了
?
python在描述路径时可以有多种方式,现列举常见的三种
方式一:转义的方式 ‘d:\\a.txt‘
方式二:显式声明字符串不用转义 ‘d:r\a.txt‘
方式三:使用Linux的路径/ ‘d:/a.txt‘
? ?
主要参考:
https://blog.csdn.net/u011242657/article/details/64437612
【E-07】'unicodeescape' codec can't decode bytes in position 29-30: malformed \N character escape
标签:使用 rac byte details osi log lin malformed linu
原文地址:https://www.cnblogs.com/yifanrensheng/p/13381948.html