Just sharing stuff…
import re r = re.compile(r"([#$])(\w+)\b") taggedwords = [] for tweet in tweets: tagged = r.findall(tweet) if tagged: for word in tagged: taggedwords.append(word[1])
Fill in your details below or click an icon to log in:
You are commenting using your WordPress.com account. ( Log Out / Change )
You are commenting using your Google account. ( Log Out / Change )
You are commenting using your Twitter account. ( Log Out / Change )
You are commenting using your Facebook account. ( Log Out / Change )
Connecting to %s
Notify me of new comments via email.
Notify me of new posts via email.