[x*2 for x in range(1, 11)]
[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)
2 * numpy.arange(1, 11)