Now import a function that processes tweets (we’ve provided this in the utils.py file).
- process_tweets removes unwanted characters e.g. hashtag, hyperlinks, stock tickers from tweet.
- It also returns a list of words (it tokenizes the original string).
—> 20 word_l = process_tweets(tweet)
21
22 if verbose:
NameError: name process_tweets is not defined
It should be process_tweet (singular). and its description in this notebook should say processes a tweet since the function handles only a single tweet at a time.