Answers for "python how to iterate over a string"

3

python iterate over string

word = "test"
for letter in word:
	print(letter)
Posted by: Guest on January-19-2021

Code answers related to "python how to iterate over a string"

Python Answers by Framework

Browse Popular Code Answers by Language