for-in loop on strings



examples/loops/for.py
txt = 'hello world'
for ch in txt:
    print(ch)

h
e
l
l
o
 
w
o
r
l
d