matplotlib 绘制曲线

import matplotlib.pyplot as plt

x = range(-100,100)
y = [i**2 for i in x]

plt.plot(x,y)
plt.rcParams['font.sans-serif'] = ['SimHei']
plt.title("绘制多点双曲线")
plt.savefig("result.jpg")
plt.show()

 

posted @ 2020-09-08 14:48  在学同学  阅读(1931)  评论(0编辑  收藏  举报