I'm trying to make a program that takes one word from the user and checks from a list of vowels and prints the vowels that are found in that word and how many were found. This is what I have so far, it's super incorrect but I tried something.
print("This program will count the total number of vowels in the word you enter.")
vowels = ["a", "e", "i", "o", "u"]
userWord = input("Please enter a single word: ")
if vowels in userWord:
print(vowels)
vowelCount = 0
vowelCount = vowelCount + 1
print("There are " + vowelCount + " total vowels in " + userWord)