how to iterate over a string python code example
Example 1: python iterate over string
word = "test"
for letter in word:
print(letter)
Example 2: iterate through characters in a string python
for c in "string":
#do something with c
word = "test"
for letter in word:
print(letter)
for c in "string":
#do something with c