Код: Выделить всё
import matplotlib.pyplot as plt
x = [4, 1, 2]
y = [1, 2, 1]
z = [0, 2, 1]
plt.fill(x, y, z)
plt.show()
Подробнее здесь: https://stackoverflow.com/questions/552 ... matplotlib
Код: Выделить всё
import matplotlib.pyplot as plt
x = [4, 1, 2]
y = [1, 2, 1]
z = [0, 2, 1]
plt.fill(x, y, z)
plt.show()