欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

xinixn -数据分析

程序员文章站 2024-03-23 20:45:22
...
import matplotlib.pyplot as plt
# mat---》 math 数学
# plot ---》 画图
# lib ---》 library 图书馆
# 5x+6x-3x=56+89-78
# x**2 = -4

x = [] # 列表
y = [] #列表
y2 = []
for i in range(0, 100):
    x.append(i)
    y.append(i**2)
    # y2.append(-4)

print(x)
print(y)

# 第二行代码
plt.plot(x, y)
# plt.plot(x,y2)
# show 秀
plt.show()