IDNLearn.com is your go-to resource for finding expert answers and community support. Join our community to receive prompt, thorough responses from knowledgeable experts.
Answer:
In Python:
word = input("Enter word: ")
print("Length: "+str(len(word)))
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