(5 points) Tagging wikipages. Modify your wikipage class
so that it uses the tagger you created in the previous section to
tag each of the words with a part of speech. Store the resulting
list in an instance variable called POS. (depending on the tagger
you used, you might not want to remove stopwords)
w.POS
[('main', 'NN'), ('page', 'NN'), ('free', 'NN'), ('encyclopedia',
'NP'), ('var', 'NN'), ('skin', 'NN'), ('stylepath', 'NN'), ('your',
'NN'), ('continued', 'VBD'), ('donations', 'NNS'), ('keep', 'NN'),
('wikipedia', 'NP'), ('main', 'NN'), ('page', 'NN'), ('from',
'IN'), ('free', 'NN'), ('encyclopedia', 'NP'), ('jump', 'NN'),
('navigation', 'NN'), ('search', 'WDT'), ('welcome', 'NN'),
('wikipedia', 'NP'), ('free', 'NN'), ('encyclopedia', 'NP'),
('can', 'MD'), ('edit', 'NN'), ...