9.0.14 count total words
Example:
def count_total_words(text):
"Returns the length of the string, which is a count of the total characters in the string"
text = str(text) # make sure the text is a string
length_of_string = len(text) # length of a string
return(length_of_string)