I want to match a regular expression on a whole word.
In the following example I am trying to match s or season but what I have matches s, e, a, o and n.
[s|season]
How do I make …
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 …