python函数plt颜色随机
时间: 2023-11-14 09:00:38 浏览: 106
随机获得颜色
4星 · 用户满意度95%
要实现Python函数plt颜色随机,可以使用random模块来生成随机颜色值。具体代码如下所示:
```python
import random
import matplotlib.pyplot as plt
def random_color():
r = random.random()
g = random.random()
b = random.random()
return (r, g, b)
plt.plot([1,2,3,4,5], [1,4,9,16,25], color=random_color())
plt.show()
```
阅读全文