Programming Python
Consecutively accessing elements (3)
Note that the
for
loop works also with strings:
for i in "Sandy": print i
prints:
S a n d y