Python
文章平均质量分 50
梓逸宸
用于记学习笔记
展开
-
用Python进行文本分析时出现UnicodeDecodeError错误的解决方法
问题:利用Python对文本进行分析时,出现UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xef in position 0: ordinal not in range(128) 先看下面这段Python代码: filename = 'alice.txt' try: with open(filename) as f_obj:原创 2018-02-05 16:05:17 · 5385 阅读 · 0 评论 -
sublime txt 3 中 Python3 代码含中文 运行错误的解决方法(mac环境)UnicodeEncodeError: ‘ascii’ codec can’t encode charact
今天在sublime txt 3 中运行下面这段Python3 的代码: words = { 'tuple': '元祖', 'list': '列表', 'readability': '可读性', 'practicality': '实用性', 'dense': '稠密的', } for word_key in list(words): prin原创 2018-01-29 00:29:24 · 621 阅读 · 0 评论