I am doing a parsing of a variable, which contains a string
a1
b2
c3
Now I want to get a1, b2 and c3, so I wrote a for loop
for items in string
print items
this returns
a
1
b
2
c
3
How do I tell the for loop, that I want each value, instead than each character?