Matplotlib中文乱码

如题

解决方案

在文件开头添加一下代码:

import matplotlib as mpl
import matplotlib.pyplot as plt

## matplotlib中文乱码解决方法
myfont = mpl.font_manager.FontProperties(fname=r"C:\Windows\Fonts\STFANGSO.TTF")
mpl.rcParams['axes.unicode_minus'] = False
mpl.rcParams['font.sans-serif'] = ['SimHei']

你可能感兴趣的:(综合小问题)