I am using the below code for decoding:-
for tweet in posfile:
tweet = tweet.decode('utf-8')
tweet = clean(tweet)
train_tweets.append(tweet)
count = count + 1
While using the above code. I am getting the below error.
What should I do to get rid of this error?