python怎么填充颜色
时间: 2023-03-25 18:00:15 浏览: 227
用颜色填充
在Python中,可以使用matplotlib库来填充颜色。具体步骤如下:
1. 导入matplotlib库
```python
import matplotlib.pyplot as plt
```
2. 创建一个图形对象
```python
fig = plt.figure()
```
3. 创建一个子图对象
```python
ax = fig.add_subplot(111)
```
4. 绘制图形并填充颜色
```python
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
ax.fill_between(x, y, color='blue')
```
其中,fill_between()函数用于填充颜色,第一个参数为x轴坐标,第二个参数为y轴坐标,第三个参数为填充颜色。
5. 显示图形
```python
plt.show()
```
以上就是在Python中填充颜色的基本步骤。
阅读全文