python画图字体设置
时间: 2023-10-19 13:34:16 浏览: 139
python画图
在 Python 中,我们可以使用 `matplotlib` 库来绘制图形。要设置图形的字体样式,你可以使用 `rcParams` 属性来更改默认字体设置。下面是一个例子:
```python
import matplotlib.pyplot as plt
# 设置字体样式
plt.rcParams['font.family'] = 'Times New Roman'
# 绘制图形
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
# 显示图形
plt.show()
```
在上面的例子中,通过将 `font.family` 设置为 `'Times New Roman'`,我们改变了默认的字体样式。你可以根据需要选择其他可用的字体样式。
阅读全文