A Pen by Mindy Zhou on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <body> | |
| <div id="header"> | |
| <h1><b><em>Welcome</em> to <em>Mindy's Interests Page</em></b></h1> | |
| </div> | |
| <div> | |
| <h2> <b> My Three Main Passions </em></h2> | |
| <ul> | |
| <li> Problem Solving </li> | |
| <ol> | |
| <li class="problemsolving"> Machine Learning </li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # import libraries | |
| import nltk | |
| import string | |
| from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer | |
| from textblob.wordnet import VERB | |
| from textblob import Word | |
| from textblob.sentiments import NaiveBayesAnalyzer | |
| from textblob import TextBlob | |
| from nltk.corpus import stopwords |