當(dāng)你需要在迭代過程中同時(shí)獲取元素的索引和值時(shí),可以使用 `enumerate()` 函數(shù)。它返回一個(gè)可迭代對(duì)象,其中每個(gè)元素都是一個(gè)包含索引和對(duì)應(yīng)值的元組。下面是 `enumerate()` 函數(shù)的總結(jié)用法:
python
# 用法一:獲取索引和值
for index, value in enumerate(iterable):
# 在循環(huán)體內(nèi)使用 index 和 value
print(index, value)
# 用法二:指定起始索引
for index, value in enumerate(iterable, start=1):
# 從索引 1 開始獲取索引和值
print(index, value)
# 用法三:將 enumerate 對(duì)象轉(zhuǎn)換為列表
enumerated_list = list(enumerate(iterable))
# 用法四:使用 enumerate 對(duì)象構(gòu)建字典
enumerated_dict = {index: value for index, value in enumerate(iterable)}
# 用法五:在列表推導(dǎo)式中使用 enumerate
result = [index * value for index, value in enumerate(iterable)]
在上面的代碼中,`iterable` 是一個(gè)可迭代對(duì)象,比如列表、元組或字符串。你可以將 `enumerate()` 函數(shù)應(yīng)用于任何可迭代對(duì)象。
在用法一和用法二中,我們使用 `for` 循環(huán)來迭代 `enumerate()` 返回的可迭代對(duì)象,并同時(shí)獲取索引和對(duì)應(yīng)的值。
在用法三中,我們使用 `list()` 函數(shù)將 `enumerate()` 返回的可迭代對(duì)象轉(zhuǎn)換為列表。
在用法四中,我們使用 `enumerate()` 構(gòu)建字典,其中索引作為鍵,對(duì)應(yīng)的值作為值。
在用法五中,我們?cè)诹斜硗茖?dǎo)式中使用 `enumerate()`,以便根據(jù)索引和值生成一個(gè)新的列表。
通過使用 `enumerate()` 函數(shù),你可以輕松地獲取索引和值,并在迭代過程中進(jìn)行處理和操作。這是一個(gè)在 Python 中常用的實(shí)用工具。