I am fairly new to python and I could not figure out how to do the following.
I have a list of (word, tag) tuples
a = [('Run', 'Noun'),('Run', 'Verb'),('The', 'Article'),('Run', 'Noun'),('The', 'DT')]
I am trying to find all tags that has been assigned to each word and collect their counts. For example, word "run" has been tagged twice to 'Noun' and once to 'Verb'.
To clarify: I would like to create another list of tuples that contains (word, tag, count)