for-in loop on strings

txt = 'hello world'
for ch in txt:
    print(ch)