Count frequency of words in a list and sort by frequency
问题 I am using Python 3.3 I need to create two lists, one for the unique words and the other for the frequencies of the word. I have to sort the unique word list based on the frequencies list so that the word with the highest frequency is first in the list. I have the design in text but am uncertain how to implement it in Python. The methods I have found so far use either Counter or dictionaries which we have not learned. I have already created the list from the file containing all the words but