python绘图
[编程语言教程]

最简绘图代码

import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0, 2*np.pi, 0.01)
y = np.sin(x)
plt.figure(1)
plt.plot(x, y)
plt.show()
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python绘图