Using regex, I wanna count the specific letter. I made a match object like below. but don't know how to count its frequency. Most of counting examples were for words so I could not find good reference for it.
f = open("C:\Python27\test.txt")
raw_sentence = f.read
upper_sentence = raw_sentence.upper()
match = re.findall(r"A", upper_sentence)
Should I make some list data just like other word counting codes do?