在使用python过程中,我们往往需要使用matplotlib进行图片的绘制,在绘图过程中,我们有时需要在图片上进行文字的显示,在使用过程中,会出现文字无法显示的问题。如下图:
遇到上述问题我们只需在代码中加入如下语句即可解决:
from pylab import mpl mpl.rcParams[‘font.sans-serif‘] = [‘SimHei‘]如下图:
原文地址:https://www.cnblogs.com/Leo-Xia/p/9997408.html
时间: 2024-10-09 20:04:18