for example: for a letter in a word, if the letter is preceded by a vowel..................
how would you write that in pythonic language
for example:
if a "h" is preceded by a "s" anywhere in a word, return(True)
the_word("bash")
True
the_word("sushi")
True