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

1

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)
Posted by: Guest on December-01-2020

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

Python Answers by Framework

Browse Popular Code Answers by Language