「Python」for文にelseで正常終了するサンプル
書式
for 変数 in リスト名:
else: 処理コード
サンプルコード
ttLst = ['Aa', 'Cc02', 'Dd4','Ee5'] for ee in ttLst: print(ee) else: print('become smart')
結果
Aa
Cc02
Dd4
Ee5
become smart
Coding Changes the World
書式
for 変数 in リスト名:
else: 処理コード
サンプルコード
ttLst = ['Aa', 'Cc02', 'Dd4','Ee5'] for ee in ttLst: print(ee) else: print('become smart')
結果
Aa
Cc02
Dd4
Ee5
become smart