4.2 pylab

from pylab import *
x=arange(0, 10, 0.2)
y=sin(x)
plot(x,y)
show()

桂田 祐史
2017-12-10