欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python matplotlib画图无法显示中文

程序员文章站 2022-03-09 20:31:08
...

支持中文显示有两种方法

法一、修改 matplotlib 安装包的配置文件

不建议这么操作

法二、在程序开头加上设置

from pylab import mpl
mpl.rcParams['font.sans-serif'] = ['FangSong'] # 指定默认字体
mpl.rcParams['axes.unicode_minus'] = False # 解决保存图像是负号'-'显示为方块的问题
相关标签: python python