Posts by Rivaldo Hater • 37 points
3 posts
-
3
votes1
answer1093
viewsQ: Remove repeated words using python
I have a text file with many repeated words. I need every word in the file to appear only once. import codecs wordList = codecs.open('Arquivo.txt' , 'r') wordList2 = codecs.open('Arquivo2.txt', 'w')…
-
0
votes1
answer449
viewsQ: Text mining with Scikit-Learn
I’m doing some research in the area of feeling analysis, so I’m running some tests on a text database to get results. I was looking for tutorials among other forms of information on the internet and…
-
0
votes1
answer666
viewsQ: Word processing in csv file
I have a database with over a thousand opinions (text) in a csv file, however I need only texts that contain more than 5 words to stay in my file. The problem is to make a code that goes through the…