Example:
If I want to write code to determine how many occurrences of a particular character appear in a string, how would I do that for multiple characters? For example if I have these words, lets just say "Simple Example" and I want to find how many times the letter E exists inside these words, I would probably use something like:
example = "Simple Example".count("e")
But what if I wanted to find more letters than just e? Let's say I want to find the occurrences of the letters that exist within the word "awesome"?
Thanks in advance!