list of age and weight python code example
Example: 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)