用法:
enumerate(iterable, start=0)
返回一個枚舉對象。
iterable
必須是序列、迭代器或其他支持迭代的對象。enumerate()
返回的迭代器的__next__()
方法返回一個元組,其中包含一個計數(來自默認為 0 的start
)和通過迭代iterable
獲得的值。>>> seasons = ['Spring', 'Summer', 'Fall', 'Winter'] >>> list(enumerate(seasons)) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list(enumerate(seasons, start=1)) [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]
相當於:
def enumerate(sequence, start=0): n = start for elem in sequence: yield n, elem n += 1
相關用法
- Python enumerate()用法及代碼示例
- Python enum.IntEnum用法及代碼示例
- Python enum.auto()用法及代碼示例
- Python enchant.request_dict()用法及代碼示例
- Python enchant.get_enchant_version()用法及代碼示例
- Python enchant.request_pwl_dict()用法及代碼示例
- Python enchant.Dict()用法及代碼示例
- Python enchant.list_languages()用法及代碼示例
- Python enchant.DictWithPWL()用法及代碼示例
- Python enchant.dict_exists()用法及代碼示例
- Python email.message.Message.walk用法及代碼示例
- Python numpy matrix eye()用法及代碼示例
- Python email.headerregistry.DateHeader用法及代碼示例
- Python eval()用法及代碼示例
- Python math expm1()用法及代碼示例
- Python email.message.EmailMessage.add_header用法及代碼示例
- Python emoji轉text用法及代碼示例
- Python eval用法及代碼示例
- Python email.utils.getaddresses用法及代碼示例
- Python email.header.decode_header用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 enumerate。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。