2018年2月5日 星期一

Python-如何用迴圈取得清單的index-How to Loop With Indexes in Python

版本相關資訊:

System version : Windows 10 64-bit
Python version : Python 3.6.0 :: Anaconda 4.3.1 (64-bit)

Codes:

list1 =['a','b','c']
for idx, val in enumerate(list1):
    print('index :',idx,' , value :', val)

結果:

index : 0 , value : a
index : 1 , value : b
index : 2 , value : c

沒有留言:

張貼留言