Stopwords in English

This is the final result of lower.  Now, I will remove the stop words and punctuation. 

four score and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty, and dedicated to the proposition that all men are created equal. “now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure. we are met on a great battlefield of that war. we have come to dedicate a portion of that field as a final resting place for those who here gave their lives that that nation might live. it is altogether fitting and proper that we should do this. “but in a larger sense we cannot dedicate, we cannot consecrate, we cannot hallow this ground. the brave men, living and dead, who struggled here have consecrated it, far above our poor power to add or detract. the world will little note, nor long remember, what we say here, but it can never forget what they did here. it is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. it is rather for us to be here dedicated to the great task remaining before us,that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion, that we here highly resolve that these dead shall not have died in vain, that this nation, under god, shall have a new birth of freedom, and that government of the people, by the people, for the people, shall not perish from the earth.

import nltk
nltk.download('stopwords')
from nltk.corpus import stopwords
en_stopwords = stopwords.words('english')
[nltk_data] Downloading package stopwords to
[nltk_data]     C:\Users\netadmin\AppData\Roaming\nltk_data...
[nltk_data]   Package stopwords is already up-to-date!
print(en_stopwords)

[‘a’, ‘about’, ‘above’, ‘after’, ‘again’, ‘against’, ‘ain’, ‘all’, ‘am’, ‘an’, ‘and’, ‘any’, ‘are’, ‘aren’, “aren’t”, ‘as’, ‘at’, ‘be’, ‘because’, ‘been’, ‘before’, ‘being’, ‘below’, ‘between’, ‘both’, ‘but’, ‘by’, ‘can’, ‘couldn’, “couldn’t”, ‘d’, ‘did’, ‘didn’, “didn’t”, ‘do’, ‘does’, ‘doesn’, “doesn’t”, ‘doing’, ‘don’, “don’t”, ‘down’, ‘during’, ‘each’, ‘few’, ‘for’, ‘from’, ‘further’, ‘had’, ‘hadn’, “hadn’t”, ‘has’, ‘hasn’, “hasn’t”, ‘have’, ‘haven’, “haven’t”, ‘having’, ‘he’, “he’d”, “he’ll”, ‘her’, ‘here’, ‘hers’, ‘herself’, “he’s”, ‘him’, ‘himself’, ‘his’, ‘how’, ‘i’, “i’d”, ‘if’, “i’ll”, “i’m”, ‘in’, ‘into’, ‘is’, ‘isn’, “isn’t”, ‘it’, “it’d”, “it’ll”, “it’s”, ‘its’, ‘itself’, “i’ve”, ‘just’, ‘ll’, ‘m’, ‘ma’, ‘me’, ‘mightn’, “mightn’t”, ‘more’, ‘most’, ‘mustn’, “mustn’t”, ‘my’, ‘myself’, ‘needn’, “needn’t”, ‘no’, ‘nor’, ‘not’, ‘now’, ‘o’, ‘of’, ‘off’, ‘on’, ‘once’, ‘only’, ‘or’, ‘other’, ‘our’, ‘ours’, ‘ourselves’, ‘out’, ‘over’, ‘own’, ‘re’, ‘s’, ‘same’, ‘shan’, “shan’t”, ‘she’, “she’d”, “she’ll”, “she’s”, ‘should’, ‘shouldn’, “shouldn’t”, “should’ve”, ‘so’, ‘some’, ‘such’, ‘t’, ‘than’, ‘that’, “that’ll”, ‘the’, ‘their’, ‘theirs’, ‘them’, ‘themselves’, ‘then’, ‘there’, ‘these’, ‘they’, “they’d”, “they’ll”, “they’re”, “they’ve”, ‘this’, ‘those’, ‘through’, ‘to’, ‘too’, ‘under’, ‘until’, ‘up’, ‘ve’, ‘very’, ‘was’, ‘wasn’, “wasn’t”, ‘we’, “we’d”, “we’ll”, “we’re”, ‘were’, ‘weren’, “weren’t”, “we’ve”, ‘what’, ‘when’, ‘where’, ‘which’, ‘while’, ‘who’, ‘whom’, ‘why’, ‘will’, ‘with’, ‘won’, “won’t”, ‘wouldn’, “wouldn’t”, ‘y’, ‘you’, “you’d”, “you’ll”, ‘your’, “you’re”, ‘yours’, ‘yourself’, ‘yourselves’, “you’ve”]

sentence = file_content_lower
sentance_no_stopwords = ' '.join([word for word in sentence.split() if word not in (en_stopwords)])
print(sentance_no_stopwords)

four score seven years ago fathers brought forth continent new nation, conceived liberty, dedicated proposition men created equal. “now engaged great civil war, testing whether nation, nation conceived dedicated, long endure. met great battlefield war. come dedicate portion field final resting place gave lives nation might live. altogether fitting proper this. “but larger sense cannot dedicate, cannot consecrate, cannot hallow ground. brave men, living dead, struggled consecrated it, far poor power add detract. world little note, long remember, say here, never forget here. us living, rather, dedicated unfinished work fought thus far nobly advanced. rather us dedicated great task remaining us,that honored dead take increased devotion cause gave last full measure devotion, highly resolve dead shall died vain, nation, god, shall new birth freedom, government people, people, people, shall perish earth.

I removed the stopwords and will now remove punctuation.

import re
no_punct_reviews = []
pattern_to_find = r"[^\w\s]"
clean_text_re = re.sub(r'[^\w\s]', '', sentance_no_stopwords)
print(clean_text_re)

four score seven years ago fathers brought forth continent new nation conceived liberty dedicated proposition men created equal now engaged great civil war testing whether nation nation conceived dedicated long endure met great battlefield war come dedicate portion field final resting place gave lives nation might live altogether fitting proper this but larger sense cannot dedicate cannot consecrate cannot hallow ground brave men living dead struggled consecrated it far poor power add detract world little note long remember say here never forget here us living rather dedicated unfinished work fought thus far nobly advanced rather us dedicated great task remaining usthat honored dead take increased devotion cause gave last full measure devotion highly resolve dead shall died vain nation god shall new birth freedom government people people people shall perish earth