how to cheak each character in a string without doing the thing for every letter in python code example
Example: iterate through characters in a string python
for c in "string":
#do something with c
for c in "string":
#do something with c