myWord=input("Enter a Word: ")
if len(myWord) <= 3 :
print(myWord)
elif myWord[-3:] == 'ing':
print(myWord)
elif myWord[-1:] == 'a' or 'e' or 'i' or 'o' or 'u':
newWord = myWord.replace('a' or 'e' or 'i' or 'o' or 'u', "ing")
print(newWord)
I am working on a program that whenever I put input a word that is < than 3 words and ends with a vowel it will replace that vowel with "ing". The third "elif" statement is where I am having the most problems because whenever I run the program and type in a word that ends with a vowel it does not replace the vowel with "ing".