I am trying to get the tweets of a list of users into an object in Python using Tweepy, with the intention of iterating through every tweet and passing it into a text classification algorithm.
The array where the tweets are saved in, is of the form:
tweets = [[tweet.id_str+screen_name, 0, tweet.text.encode("utf-8")] for tweet in alltweets]
So what I need is to iterate through every row of the array and get the string (the tweet text) of the third column.
What is the proper syntax for doing it?