Programming Examples
Python program to print letters of word
Write Python program to print letters of entered word
Solution
word=input("Enter any word : ")
for letter in word:
print(letter)
Output
Enter any word : infomax
i
n
f
o
m
a
x