matplotlib.pyplot.bar(x, y, width=0.8, bottom=None, \*, align='center', data=None, \*\*kwargs)
x:x轴的数据值,或者标签
y:每个标签的值
width: 每个柱形图中每个柱子的宽度
bottom:y轴的基准值(一般为0)
align: 柱形图中每个柱子在中心或者边缘(center, edge)
label: 添加标签
import matplotlib.pyplot as plt
plt.bar(m_list,m_num,label='City Hotel')
plt.bar(m_list,m_num_resort,label='Resort Hotel')
plt.legend(loc="upper left")