Typeerror: Must Be Str, Not List
the problem is output result is not save in csv file. I'm using this code to weight-age the words positive and negative.I want to save in the csv file.Firstly, read the csv file ,a
Solution 1:
Try to this.
sorted_words = ''.join(sorted(scores.items(), reverse=True))
Post a Comment for "Typeerror: Must Be Str, Not List"