Python中實現R的seq函數

R的seq函數定義很簡單:python seq(from, to, by= ) from 開始數,to結束數,by步長函數 > seq(1,5,0.5) [1] 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0code Python 用range函數class >>> [ (i+5)/10 for i in range(0,50,5)] [0.5, 1.0, 1.5, 2.0
相關文章
相關標籤/搜索