for文の例D : 文字列について1文字ずつ順番に処理

string = 'abcde'

for s in string:
    print(s)

実行結果

a
b
c
d
e