# !pip install matplotlib==3.0.0
import matplotlib.pyplot as plt
z = [] # 生成数据
for i in range(50):
z.append(random.randint(-100, 100))
plt.title('hello,workd') #设置标题
plt.plot(z, 'r', lw=1.5) # 画图,红色
plt.xlabel('x') # 标签
plt.ylabel('y')
plt.legend(loc=0) # 图例
plt.show()