of translate no_punctuation = lowers.translate(string.punctuation) tokens = nltk.word_tokenize(str) return tokens tokens = get_tokens() filtered = [w for w in tokens if not w in stopwords.words('english')] count = Counter(filtered) c=count.most_common() #print(c) for c in c[:30]...