Python设置字体的语句
时间: 2023-11-05 17:29:06 浏览: 139
Python基于pygame实现的font游戏字体(附源码)
在Python中,可以使用matplotlib库来设置字体。具体步骤如下:
1. 安装matplotlib库。可以使用pip命令进行安装,如下所示:
```
pip install matplotlib
```
2. 导入matplotlib库和font_manager模块。如下所示:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
```
3. 创建一个FontProperties对象,并设置字体相关属性。如下所示:
```python
font = FontProperties()
font.set_family('serif') # 设置字体
font.set_name('Times New Roman') # 设置字体名称
font.set_size(14) # 设置字体大小
```
4. 在需要设置字体的地方,使用`font_properties`参数来指定字体。如下所示:
```python
plt.xlabel('X轴', fontproperties=font)
plt.ylabel('Y轴', fontproperties=font)
plt.title('图表标题', fontproperties=font)
```
完整的示例代码如下所示:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
# 设置字体
font = FontProperties()
font.set_family('serif')
font.set_name('Times New Roman')
font.set_size(14)
# 绘制图表
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
plt.plot(x, y)
plt.xlabel('X轴', fontproperties=font)
plt.ylabel('Y轴', fontproperties=font)
plt.title('图表标题', fontproperties=font)
plt.show()
```
阅读全文