I am following instructions for a class homework assignment and I am supposed to look up the top 200 most frequently used words in a text file.
Here\'s the last par
If your using python 3 try:
fdist1.most_common(200)
instead, to get the 200 most frequent words.