>>> text = "apples" >>> text.count("p") 2 >>> text.count("a") 1 >>> phrase = list("apples") >>> phrase.count("a") 1 >>> phrase.count("A") 0 >>> phrase.count("p") 2 >>>