Basically i wanted to know how to count the number of letters in a list, for example lets say i add the word 'EXAMPLE' to a list and then lets say i wanna find out how many times the letter 'e' is used given e as the user input how would i write it so it says there are 2 e's in the word 'EXAMPLE'.
So far i got
WordList = []
print("1. Enter A Word")
print("2. Check Letter Or Vowel Times")
userInput = input("Please Choose An Option: ")
if userInput == "1":
wordInput = input("Please Enter A Word: ")
WordList.append(wordInput.lower())