用户:
稚气的巨叶龙EofQ查看:0 回复:0 评论:0 创建时间:2021-07-31T12:30:10
【作品展示】

【作品介绍】
python函数绘制练习图
【作品源代码】
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-20,20,1000)
y1 = 2*x+1
y2 = x**2-100
y3 = np.sin(x)
y4 = x**3+2*x**2+3
plt.figure()
plt.plot(x, y1,color='green')
plt.plot(x, y4, color='red', linestyle='-.')
plt.figure()
plt.plot(x, y2)
plt.plot(x, y3,color='yellow',linestyle='--')
plt.show()
【提示】
部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:
https://python.codemao.cn