Skip to content

Instantly share code, notes, and snippets.

View sandeepkunkunuru's full-sized avatar

Sandeep Kunkunuru sandeepkunkunuru

View GitHub Profile
@sandeepkunkunuru
sandeepkunkunuru / match.py
Created January 9, 2022 05:51
Match words from one file to many files
import os
from nltk.corpus import stopwords
sw = set(stopwords.words('english'))
f1 = "<<>>"
directory = "<<>>"
with open(f1, 'r') as file1: