I am really new to this coding thing and I orignal wanted to start coding to create bots to automate stuff for me, but to do that I need to learn the basics of coding. I wanted to make a function that can look in a variable for a letter and the print a message. But when I execute the outecome in terminal is none.
vowel = ("aeiou")
def ting(phrase):
if vowel in phrase:
print("I have Vowels")
print(ting(input("Enter What you want to say: ")))
I'm sorry if the soultion is really simple but i don't know what to call this problem of mine so i really don't know what to be looking for to fix it.