📜  如何在python代码示例中的饼图中添加百分比

📅  最后修改于: 2022-03-11 14:45:26.547000             🧑  作者: Mango

代码示例2
plt.figure()
values = [3, 12, 5, 8] 
labels = ['a', 'b', 'c', 'd'] 
plt.pie(values, labels=labels) #autopct??
plt.show()