enumerate()関数を利用することで、for文内のループ処理にインデックス番号を付与できる
ary = ['ドル', 'ユーロ', 'ポンド', 'リラ'] for i, d in enumerate(ary): print('index:' + str(i) + ' 通貨:' + d)
$ python3 test.py
index:0 通貨:ドル
index:1 通貨:ユーロ
index:2 通貨:ポンド
index:3 通貨:リラ
ソフトウェアエンジニアの技術ブログ:Software engineer tech blog
随机应变 ABCD: Always Be Coding and … : хороший