I am trying to convert a text file into a list, using Python.
The text file are many words, one below the other.
What I did was this:
stop_words=open('stopwords.txt.txt','r')
lineas = [linea.split() for linea in stop_words]
for linea in...
asked by
21.11.2017 / 03:01