Answers for "string in loop python"

3

python iterate over string

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

Python Answers by Framework

Browse Popular Code Answers by Language