Python Forum
Omit pronoun/common words when searching in Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Omit pronoun/common words when searching in Python
#1
I have a python program to count most appearing words in a file. Now I want to omit most common words from the file. I have written 2 program for this. How can combine them or call internally?

--Snippet of code

def order_bag_of_words(bag_of_words, desc=False):
    words = [(word, cnt) for word, cnt in bag_of_words.items()]
    return sorted(words, key=lambda x: x[1], reverse=desc)
-- snippet of stop words

from nltk.corpus import stopwords
from nltk.tokenize import wordpunct_tokenize

stop_words = set(stopwords.words('english')) # creating a set makes the 
searching faster
print (stop_words)
Reply
#2
So you have a way to get words you want to ignore. And you have a way to sort words. I'm confused on what you need help with, isn't that everything?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Python code for Longest Common Subsequence Bolt 3 3,004 Sep-22-2023, 08:09 AM
Last Post: Bolt
  Python implementation of Longest Common Substring problem Bolt 0 2,202 Sep-17-2023, 08:31 PM
Last Post: Bolt
  python-docx regex : Browse the found words in turn from top to bottom Tmagpy 0 2,864 Jun-27-2022, 08:45 AM
Last Post: Tmagpy
  a function common to methods of a class Skaperen 7 5,136 Oct-04-2021, 07:07 PM
Last Post: Skaperen
  Generate a string of words for multiple lists of words in txt files in order. AnicraftPlayz 2 5,014 Aug-11-2021, 03:45 PM
Last Post: jamesaarr
  Find Common Elements in 2 list quest 4 4,429 Apr-14-2021, 03:57 PM
Last Post: quest
  How do I change this code for searching duplicats in python ? Eidrizi 0 2,233 Mar-17-2021, 01:34 PM
Last Post: Eidrizi
  Check common element in tuples PUP280 10 10,614 Nov-05-2020, 05:01 PM
Last Post: PUP280
  Voynich search engine in python using dashes & dot totals to find Italian words Pleiades 3 5,355 Oct-10-2019, 10:04 PM
Last Post: Pleiades
  Compare words Python xSphere 3 3,945 Jan-24-2019, 10:52 AM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020