关于Python万恶的中文乱码和找不到问题
Posted Mariahcat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Python万恶的中文乱码和找不到问题相关的知识,希望对你有一定的参考价值。
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:ABSTestCase系统基础管理{‘confidence‘: 0.99, ‘language‘: ‘‘, ‘encoding‘: ‘utf-8‘}
False
E:ABSTestCase系统基础管理
{‘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万恶的中文乱码和找不到问题的主要内容,如果未能解决你的问题,请参考以下文章