[x in tweet.split() for x in wordlist]
map(lambda x: x in tweet.split(),wordlist)
[x for x in wordlist if x in tweet]
set(tweet.split()) & set(wordlist)