Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

the user to enter their name and display each letter in their name on a separate line python

wq=input("enter your name: ")
word= wq
for index,letter in enumerate(word,1):
    print(index,":",letter)
 
PREVIOUS NEXT
Tagged: #user #enter #display #letter #separate #line #python
ADD COMMENT
Topic
Name
2+3 =