わかさぎのブログ

プログラミング、Atcoderの勉強とか

julia juliaでmatplotlib

using PyPlot

a=[1,2,3]
b=[4,5,6]

plt.plot(a,b)
plt.show()