码迷,mamicode.com
首页 > 其他好文 > 详细

exception1:unicodeescape’ codec can’t decode bytes in position XXX: trun错误解决方案

时间:2018-12-14 10:54:44      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:color   不用   linu   lin   转义字符   字符   tab键   run   txt   

window 读取文件可以用\,但是在字符串中\是被当作转义字符来使用,所以’d:\a.txt’会被转义成’d:\a.txt’这是正确路径,所以不会报错。而‘C:\Users\FrankYuan\Pictures\Camera Roll\WIN_20161010_08_51_57_Pro.jpg ’中经过转义之后可能就找不到路径的资源了,例如\t可能就转义成tab键了。
python在描述路径时可以有多种方式,现列举常见的三种:

方式一:转义的方式

d:\\a.txt

方式二:显式声明字符串不用转义

d:r\a.txt

方式三:使用Linux的路径/

d:/a.txt

 

exception1:unicodeescape’ codec can’t decode bytes in position XXX: trun错误解决方案

标签:color   不用   linu   lin   转义字符   字符   tab键   run   txt   

原文地址:https://www.cnblogs.com/1701fourth/p/10118006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!