180k views
4 votes
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-example-1

1 Answer

7 votes

Answer:

word = input("Type your name: ")

print(len(word))

Step-by-step explanation:

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

User KonDeichmann
by
7.0k points