饱满豌豆

文章
4
资源
1
加入时间
2年10月24天

matplotlib之饼状图

import matplotlib.pyplot as pltlabels = 'A', 'B', 'C', 'D'fracs = [35, 20, 45, 10]plt.pie(x=fracs, labels=labels)plt.show()圆形饼图import matplotlib.pyplot as pltlabels = 'A', 'B', 'C', ...