Python 繪製函數圖形

1安裝依賴庫 pip3 install numpy pip3 install matplotlib 2.實驗一個例子 import numpy as np import pylab as pl x=list(range(0,6)) y=[] for index in x: y.append(x[index]*x[index]) pl.plot(x,y) pl.title("y=x*x") pl.x
相關文章
相關標籤/搜索