import numpy from matplotlib import pyplot x = numpy.arange(1, 6) y = 2 * x + 10 pyplot.title("Matplotlib") pyplot.xlabel("x axis") ...
確定! 回上一頁