{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"provenance":[],"authorship_tag":"ABX9TyP57wcWTxVzkqmxEV3VZmq4"},"kernelspec":{"name":"python3","display_name":"Python 3"},"language_info":{"name":"python"}},"cells":[{"cell_type":"code","execution_count":1,"metadata":{"id":"CzOJDX7YmoXK","executionInfo":{"status":"ok","timestamp":1759595359864,"user_tz":-330,"elapsed":5365,"user":{"displayName":"YOGESH SAHU","userId":"09036209155327710676"}},"colab":{"base_uri":"https://localhost:8080/"},"outputId":"88046469-9ba3-4eff-de56-3eaea2055aa1"},"outputs":[{"output_type":"stream","name":"stdout","text":["{'all', 'doing', \"should've\", \"i'm\", 'only', 'under', 'hasn', 'while', 'into', 'will', \"you'd\", 'isn', 'm', 'wasn', 'any', 'which', 'then', 'don', \"he'd\", \"shan't\", 'few', 'can', 'again', 'because', 'an', 'nor', 'd', 'of', 'does', \"it's\", 'his', 'been', \"they'd\", \"we'd\", 'doesn', \"they've\", 'and', \"we've\", \"he'll\", \"hasn't\", 'what', 'some', 'off', 'this', 'in', 'how', 'is', \"they're\", 'has', 'above', \"haven't\", 'ain', 'further', 'it', 's', 'to', 'too', 'my', 'up', 'down', \"weren't\", 'we', \"mustn't\", 'very', \"don't\", \"you'll\", 'who', 'he', \"we're\", 'through', 'whom', 'have', 'theirs', \"that'll\", 'ma', 'hers', 'most', 'once', \"aren't\", 'themselves', \"i've\", 'weren', 'at', \"needn't\", \"she's\", 'shan', \"doesn't\", \"shouldn't\", 'on', 'yourselves', 'haven', 'against', 'from', 'before', 't', 'i', 'wouldn', \"couldn't\", 'not', 'shouldn', \"we'll\", 'yours', 'having', \"didn't\", \"he's\", 'our', 'y', 'the', 'are', 'where', 'until', 'just', 're', 'same', \"it'll\", 'both', 'couldn', 'each', 'or', 'its', 'for', 'so', 'needn', 'yourself', \"you've\", 'more', 'those', 'there', 'won', \"you're\", 'during', \"it'd\", 'll', 'her', \"they'll\", \"wouldn't\", 'below', 'out', 'ourselves', 'should', 'ours', 'am', 'was', 'mustn', 'as', 'about', \"mightn't\", 'me', \"won't\", 've', 'did', 'when', 'she', 'your', 'him', 'now', 'be', \"hadn't\", 'these', \"she'd\", 'but', 'myself', \"wasn't\", 'after', 'didn', 'being', 'other', 'than', 'here', 'if', 'mightn', 'over', 'such', 'between', 'itself', 'o', 'do', 'a', 'hadn', 'you', \"i'll\", \"she'll\", 'them', 'were', 'with', 'their', 'they', \"isn't\", 'own', 'had', 'himself', \"i'd\", 'aren', 'by', 'that', 'why', 'herself', 'no'}\n"]},{"output_type":"stream","name":"stderr","text":["[nltk_data] Downloading package stopwords to /root/nltk_data...\n","[nltk_data] Unzipping corpora/stopwords.zip.\n"]}],"source":["import nltk\n","nltk.download('stopwords')\n","from nltk.corpus import stopwords\n","stop_words = set(stopwords.words('english'))\n","print(stop_words)"]}]}