关于python的可视化代码


hour = range(24)
print(hour)
celsius_values = [25.6, 24.1, 23.4, 22.6, 22.4, 21.8, 21.3, 20.7, 20.4, 20.8, 21.0, 22.3, 24.5, 26.3, 27.3, 27.5, 26.4, 24.8, 24.3, 22.8, 22.1, 21.8, 21.4, 20.8]
plt.figure(figsize=(24, 5))
plt.plot(hour, celsius_values, '--c', hour, celsius_values, '*r')
plt.xlabel('Hours')
plt.ylabel('Degrees Celsius')
xmin, xmax = 0, 23  # unchanged
ymin, ymax = 18, 30
plt.axis([xmin, xmax, ymin, ymax])
plt.xticks(range(24))
plt.show()

请问这里*r代表什么意思

哦我懂了,*是星号点的意思,r是红色,我查到了
po一下链接:https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.plot.html