python range函數

range(start,end,step=1) #start是計數開始的位置,默認爲0 #end是計數結束的位置,最後返回的列表不包含這個數 #step是默認爲1的web start: 計數從 start 開始。默認是從 0 開始。例如range(10)等價於range(0, 10) stop: 計數到 stop 結束,但不包括 stop。例如:range(0,10) 是[0, 1, 2, 3,
相關文章
相關標籤/搜索