Python中有很多迭代器,例如list、tuple等,range()提供了另一種方法來使用一些條件初始化數字序列。 (相關推薦:《Python教程》)
range()通常用於循環,因此,在處理任何類型的Python程式碼時,相同的知識是關鍵方面。
語法:
range(start, stop, step)
參數:
#start:必須從其中開始建構序列的元素。 (預設值:0)
stop:序列中數字必須結束的元素號(排他)。
step:可以是 ve或-ve編號,表示在填滿清單時需要跳過的元素。 (預設值:1)
返回:使用公式的列表:
其中,n >=0 and list[n] =0 and list[n] > stop (for negative step)
如果步驟為0,回傳ValueError。若步驟不滿足返回空序列,則檢查值約束,否則按公式返回序列。
程式碼1:示範沒有step參數的range()
lis1 = list(range(6)) lis2 = list(range(3, 6)) lis3 = list(range(-6, 2)) print("使用1个参数生成的列表:" + str(lis1)) print("使用2个参数生成的列表:" + str(lis2)) print("使用2个带负值的参数生成的列表: " + str(lis3))
輸出:
使用1个参数生成的列表:[0,1,2,3,4,5] 使用2个参数生成的列表:[3,4,5] 使用2个带负值的参数生成的列表:[-6,-5,-4,-3,-2,-1,0,1]
程式碼2:使用step示範range()
print("使用step生成列表:" + str(list(range(3, 10, 2)))) print("使用负step生成的列表: " + str(list(range(10, -5, -3)))) print("使用step生成列表,值限制失败: " + str(list(range(10, -5, 3)))) print("使用 0 step生成列表:" + str(list(range(3, 7, 0))))
輸出:
使用step生成列表:[3,5,7,9] 使用负step生成的列表:[10,7,4,1,-2] 使用step生成列表,值限制失败:[]
例外:
Traceback (most recent call last): File "/home/bdae725dff7b38d3681eee38f6a6d434.py", line 23, in print("使用 0 step生成列表: " + str(list(range(3, 7, 0)))) ValueError: range() arg 3 must not be zero
本篇文章就是關於Python中range()方法的使用介紹,希望對需要的朋友有幫助!
以上是如何使用Python中range()方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!