import matplotlib.pyplot as plt data = [89,95,60] labels = ['甲','乙','丙'] plt.pie(data, autopct='%.2f%%',labels=labels) plt.legend() ...
確定! 回上一頁