python str()函数报错‘gbk‘ codec can‘t encode character ‘\u0e05‘ in position 410: illegal multibyte seque

问题描述:

str(text.text)

该行代码报错
‘gbk’ codec can’t encode character ‘\u0e05’ in position 410: illegal multibyte sequence


原因分析:

编码方式遇到不能识别的字符


解决方案:

str(text.text, encoding="utf-8")

你可能感兴趣的:(Exception,PYTHON程序员,python,bug)