Task asked for "Please write a program which asks the user for a word and then prints out the number of characters, if there was more than one typed in."
during testing i thought it said 3 characters so wrote this code:
input_word = str(input("Please type in a word:"))
letters = len(input_word)
if letters >= 3:
print(f"There are {letters} letters in the word {input_word}")
print("Thank you!")
This passed the testing, yet doesn't actually solve the problem!