python画图如何设置字体为宋体
时间: 2024-05-16 21:14:58 浏览: 115
图片坐标设置_python画图坐标设置代码_
5星 · 资源好评率100%
可以使用 `matplotlib` 库来进行图形绘制,然后使用 `font_manager` 模块来设置字体为宋体。具体操作如下:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
# 设置字体为宋体
font = FontProperties(fname=r'C:\Windows\Fonts\simsun.ttc')
# 绘制图形
plt.plot([1, 2, 3, 4])
plt.title('图形标题', fontproperties=font)
plt.xlabel('X轴标签', fontproperties=font)
plt.ylabel('Y轴标签', fontproperties=font)
plt.show()
```
在上面的代码中,我们首先导入了 `matplotlib.pyplot` 和 `FontProperties` 模块。然后通过 `FontProperties` 模块中的 `fname` 参数指定宋体字体的路径,将其赋值给 `font` 变量。最后通过 `fontproperties` 参数将 `font` 变量应用到图形标题和坐标轴标签中,从而实现了字体为宋体的效果。
阅读全文