【python入門】arange()與range()的區別

range(start, end, step),返回一個list對象也就是range.object,起始值爲start,終止值爲end,但不含終止值,步長爲step。只能建立int型list。 arange(start, end, step),與range()相似,也不含終止值。可是返回一個array對象。須要導入numpy模塊(import numpy as np或者from numpy imp
相關文章
相關標籤/搜索