Dup Ver Goto 📝

PieChart_001

PT2/lang/python/matplotlib does not exist
To
11 lines, 27 words, 213 chars Page 'PieChart_001' does not exist.
from matplotlib import pyplot as plt

labels = [ "Alice", "Bob", "Charlie", "Dave" ]
values = [ 1, 2, 3, 4 ]

plt.pie(values,labels=labels,autopct='%1.f%%')
plt.show()