print ("There are %s letters in the word.") % (len(word))
print ("There are %s letters in the word." % len(word))
Leave a comment: