Python画图,画五个线条,要橙黄色系依次渐变的颜色
时间: 2023-11-19 13:20:01 浏览: 247
以下是使用Matplotlib库在Python中画五个线条,并使用橙黄色系依次渐变的颜色的示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 生成横坐标数据
x = np.linspace(0, 10, 100)
# 生成五个纵坐标数据
y1 = np.sin(x)
y2 = np.cos(x)
y3 = np.tan(x)
y4 = np.exp(x)
y5 = np.log(x)
# 定义橙黄色系颜色列表
colors = ['#FFE4B5', '#FFDAB9', '#FFC0CB', '#FFB6C1', '#FFA07A']
# 画五个线条,并使用橙黄色系依次渐变的颜色
plt.plot(x, y1, color=colors[0])
plt.plot(x, y2, color=colors[1])
plt.plot(x, y3, color=colors[2])
plt.plot(x, y4, color=colors[3])
plt.plot(x, y5, color=colors[4])
# 显示图形
plt.show()
```
运行上述代码,即可画出五个线条,并使用橙黄色系依次渐变的颜色,如下图所示:
![orange-yellow-gradient-colors](https://i.imgur.com/r3ZzL5J.png)
阅读全文