BLOG
[Python]for文
2015/9/7
Python繰り返し処理のfor文の使い方の確認。
1 2 |
for 変数 in オブジェクト: 実行する処理 |
例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
list_sample = ['a', 'b', 'c'] for val in list_sample: print(val) ''' 出力結果 a b c ''' #辞書型 list_sample_02 = {'aa':2, 'bb':1, 'cc':3} for val in list_sample_02: print(val) ''' 出力結果 aa bb cc ''' for val in list_sample_02: print(list_sample_02[val]) ''' 出力結果 2 1 3 ''' |
Tag:Python