#1、设置数据
name = ['一年级','二年级','三年级','四年级','五年级','六年级']
count = [42,51,64,45,55,66]
#2、创建画布
plt.figure(figsize = (20,8),dpi=80)
#3、绘制饼图
plt.pie(count,labels=name,autopct="%1.2f%%",colors=['b','y','r','g','c','g'])
plt.legend()
plt.axis('equal')
#4、标题
plt.title("小学年纪人数饼图")
plt.show()