import matplotlib.pyplot as plt
values = [1, 2, 3, 4, 5] #创建一个数组列表
square = [1, 4, 9, 16, 25]
plt.plot(values, square, linewidth=5, color='b') # 将列表传递给plot,并设置线宽,设置颜色,默认为蓝色
plt.title("Squares Number", fontsize=24, color='r')#设置标题,并给定字号,设置颜色
plt.xlabel("Value", fontsize=14, color='g')#设置轴标题,并给定字号,设置颜色
plt.ylabel("Squares Of Value", fontsize=14, color='g')
plt.tick_params(axis='both', labelsize=14)#设置刻度标记的大小
plt.show() #显示