码迷,mamicode.com
首页 > 编程语言 > 详细

关于Python万恶的中文乱码和找不到问题

时间:2018-07-13 12:14:23      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:中文   encode   安装   odi   chardet   tca   基础   ase   方法   

rootDir = os.path.join(CASE_PATH, "系统", "基础", "管理")
print rootDir
print(chardet.detect(rootDir))
print os.path.exists(rootDir)
unicode(rootDir, "utf-8")
print rootDir
print(chardet.detect(rootDir))
print os.path.exists(unicode(rootDir, "utf-8"))

E:\ABS\TestCase\系统\基础\管理

{‘confidence‘: 0.99, ‘language‘: ‘‘, ‘encoding‘: ‘utf-8‘}

False

E:\ABS\TestCase\系统\基础\管理

{‘confidence‘: 0.99, ‘language‘: ‘‘, ‘encoding‘: ‘utf-8‘}

True



网上各种回答乱入:

1.python默认安装的时候编码是ASCII

2.python内部执行程序时传递时是UNICODE

3.python内存中中文变现为UNNICODE


解决方法如上,暂时还在凌乱,后续再看吧


又报错打印出来路径变成16进制了

解决:rootDir.decode(‘utf-8‘).encode(‘utf-8‘)

关于Python万恶的中文乱码和找不到问题

标签:中文   encode   安装   odi   chardet   tca   基础   ase   方法   

原文地址:https://www.cnblogs.com/mariahcat/p/9304098.html

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