Python 3.1 快速導覽 - 內建函數 enumerate()

內建函數 (function) enumerate() ,回傳以參數 (parameter) iterable 與連續整數配對的 enumerate 物件, start 為整數的起始值,預設為 0

函數描述
enumerate(iterable, start=0)回傳以 iterable 與連續整數配對的 enumerate 物件, start 為整數的起始值,預設為 0


舉例示範如下
d = ['Spring', 'Summer', 'Fall', 'Winter']
for i, j in enumerate(d, 1):
    print(i, j)

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:enumerate.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
函數function
參數parameter


內建函數




沒有留言: