number_of_neutral_tweets = 0
# perform the calculation here
for tweet in tweets:
for word in happy_words:
for word in sad_words:
if word not in tweet:
number_of_neutral_tweets += 1
number_of_neutral_tweets = 0
# perform the calculation here
for tweet in tweets:
for word in happy_words:
for word in sad_words:
if word not in tweet:
number_of_neutral_tweets += 1