Matplotlib предоставляет цветовую карту tab20, которая может подойти здесь.
Также вы можете взять цвета из существующей карты цветов и рандомизировать их порядок.
Два инструмента, которые позволили бы получить список из n различных цветов, были бы
Сравнение этих трех вариантов:
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["axes.xmargin"] = 0
plt.rcParams["axes.ymargin"] = 0
# Take the colors of an existing categorical map
colors1 = plt.cm.tab20.colors
# Take the randomized colors of a continuous map
inx = np.linspace(0,1,20)
np.random.shuffle(inx)
colors2 = plt.cm.nipy_spectral(inx)
# Take a list of custom colors
colors3 = ["#9d6d00", "#903ee0", "#11dc79", "#f568ff", "#419500", "#013fb0",
"#f2b64c", "#007ae4", "#ff905a", "#33d3e3", "#9e003a", "#019085",
"#950065", "#afc98f", "#ff9bfa", "#83221d", "#01668a", "#ff7c7c",
"#643561", "#75608a"]
fig = plt.figure()
x = np.arange(10)
y = np.random.rand(20, 10)+0.2
y /= y.sum(axis=0)
for i, colors in enumerate([colors1, colors2, colors3]):
with plt.style.context({"axes.prop_cycle" : plt.cycler("color", colors)}):
ax = fig.add_subplot(1,3,i+1)
ax.stackplot(x,y)
plt.show()
![enter image description here](https://i.stack.imgur.com/IAtje.png)