Tableaux de tracé python de la matrice

plt.figure()
for i in range(len(a)):
    plt.plot(a[i], b[i])
plt.show()
Shiny Shrike