# 绘制3月每天最高温和10月每天最高温散点图 from matplotlib import pyplot as plt # 让matplotlib能够显示中文 plt.rcParams['font.sans-serif'] = ['SimHei'] y_3 = [11,17,16,11,12,11,12,6,6,7,8,9,12,15,14,17,18,21,16,17,20,14,15,15,15,19,21,22,22,22,23] y_10 = [26,26,28,19,21,17,16,19,18,20,20,19,22,23,17,20,21,20,22,15,11,15,5,13,17,10,11,13,12,13,6] x_3 = range(1,32) x_10 = range(51,82) # 设置表参数 plt.figure(figsize=(10,5),dpi=80) # 绘制散点图 plt.scatter(x_3,y_3,label="3月") plt.scatter(x_10,y_10,label="10月") # 添加图例,并设置显示位置为左上角 plt.legend(loc="upper left") # 自定义x轴 # 先把两个列表相加 x = list(x_3) + list(x_10) # 再把两个刻度相加 x_tick = ["3月{}日".format(i) for i in x_3] x_tick += ["10月{}日".format(i-50) for i in x_10] # 把列表和刻度一一对应替换,并且旋转45° plt.xticks(x[::3],x_tick[::3],rotation=45) # 设置说明信息 plt.xlabel("日 期") plt.ylabel("温 度") plt.show()