This is a python program.

I managed to get this program to say hello to a user after they input their first and last name, however, I cannot manage to get the program to tell the user how many letters are in the user's name.

This is a python program. I managed to get this program to say hello to a user after they input their first and last name, however, I cannot manage to get the p class=

Answer :

Answer:

word = input("Type your name: ")

print(len(word))

Explanation:

The len function will count all the chars in the string.

Other Questions