python作图中,如何显示中文
时间: 2024-05-13 13:21:09 浏览: 155
Python绘图实现显示中文
5星 · 资源好评率100%
可以使用matplotlib库,并设置字体为中文字体。例如:
```
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties(fname='你的中文字体.ttf', size=14) # 修改为你的中文字体
plt.title("标题", fontproperties=font)
plt.xlabel("x轴标签", fontproperties=font)
plt.ylabel("y轴标签", fontproperties=font)
plt.show()
```
其中,FontProperties()函数用于设置字体,fname参数指定字体文件路径,size参数指定字体大小。在标题、x轴标签、y轴标签等位置,添加fontproperties参数即可使用中文。
阅读全文