错误问题:ValueError: matplotlib display text must have all code points < 128 or use Unicode strings
错误原因:在使用matplotlib进行图表展示时,如果需要在图表上添加中文,可能会报字符类型的值错误。
解决办法:重新调用系统,修改默认的字符类型。
import sys reload(sys) sys.setdefaultencoding('utf-8')
说明:一般在我们写程序的过程中,经常会遇到这种字符类型错误,可以尝试从了解系统的字符类型和编译器等字符类型是否统一入手,如果有中文英文,尽可能使用utf-8.