dishes_count.plot(kind='line',color='pink') ##折线图
for x,y in enumerate(dishes_count):
print(x,y)
plt.text(x,y+1,y,ha='center',va='bottom',fontsize=12) ##ha='center'字体居中显示
plt.title('最受欢迎菜品TOP10')
plt.xlabel('菜品名称',fontsize=12)
plt.ylabel('点购数量')