Answer:
In Python:
word = input("Enter word: ")
print("Length: "+str(len(word)))
Step-by-step explanation:
This prompts the user for word
word = input("Enter word: ")
This calculates and prints the length of the input word
print("Length: "+str(len(word)))
The length of the word is calculated using the len keyword