Python range 函式用法

2021-08-21 20:07:07 字數 1580 閱讀 1291

python range() 函式可建立乙個整數列表,一般用在 for 迴圈中。

range(start, stop[, step])
引數說明:

>>>range(10) # 從 0 開始到 10 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> range(1, 11) # 從 1 開始到 11 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] >>> range(0, 30, 5) # 步長為 5 [0, 5, 10, 15, 20, 25] >>> range(0, 10, 3) # 步長為 3 [0, 3, 6, 9] >>> range(0, -10, -1) # 負數 [0, -1, -2, -3, -4, -5, -6, -7, -8, -9] >>> range(0) >>> range(1, 0)

以下是 range 在 for 中的使用,迴圈出runoob 的每個字母:

>>>x = 'runoob' >>> for i in range(len(x)) : ... print(x[i]) ... r u n o o b >>>

python os 檔案/目錄方法

python 物件導向

2 篇筆記

northxw

nor***[email protected]

python3.x 中 range() 函式返回的結果是乙個整數序列的物件,而不是列表。

>>> type(range(10))

當你 help(range) 時會看到:

return an object...
所以,不是列表,但是可以利用 list 函式返回列表,即:

>>> list(range(10))

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

northxw northxw

nor***[email protected]

9個月前 (10-20)

uswood

usw***@163.com

在嘗試將 range 生成的列表(感謝樓上的筆記)作為可變長引數元組傳入函式的時候,發現列表會作為乙個元組元素傳入,因此要在使用的時候使用巢狀的 for 來遍歷兩次。

**如下:

def sumall(*argu):

"""函式:計算所有傳入列表資料的和。

*argu:可變長引數元組,名字可任意,argu為慣例;傳入後會成為元組的元素。

return:計算的和。

"""total = 0

for i in argu:

for li in i:

total += li

print(total)

num = list(range(1,101))

sumall(num)

因為這裡演示的是計算列表,如果只是計算數字,只需要 for 遍歷一次而不是 for兩次。

因為多個引數作為可變長引數元組傳入後,是乙個元組,當把列表傳入後,就會成為乙個元素 ([1,2,3],) 所以使用兩次遍歷。

如果繼續編寫,可以新增 isinstance(argu,list) 函式來判斷元素是否為列表,用分支分別處理不同的元素。

Python range 函式用法

python range 函式可建立乙個整數列表,一般用在 for 迴圈中。range start,stop step 引數說明 range 10 從 0 開始到 10 0,1,2,3,4,5,6,7,8,9 range 1,11 從 1 開始到 11 1,2,3,4,5,6,7,8,9,10 ra...

Python range 函式用法

python range 函式用法 python 內建函式 python 內建函式 python range 函式可建立乙個整數列表,一般用在 for 迴圈中。函式語法 range start,stop step 引數說明 start 計數從 start 開始。預設是從 0 開始。例如range 5...

Python range 函式用法

python 內建函式 python range 函式可建立乙個整數列表,一般用在 for 迴圈中。range start,stop step 引數說明 range 10 從 0 開始到 10 0,1,2,3,4,5,6,7,8,9 range 1,11 從 1 開始到 11 1,2,3,4,5,6...