If I have a list of strings such as this:
names = ["Alice", "Bob", "Charlie", "Darren"]
How would I find how many of these strings contain the letter 'a'?
I tried using the count function
names.count("a")
But this only output the amount of elements that were 'a' rather than contained 'a'.