Guest User

Untitled

a guest
Nov 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. with open('stopwords.txt','r') as stop_words:
  2. linea=stop_words.readline()
  3. while linea != "":
  4. linea=stop_words.readline()
  5. print(linea)
Add Comment
Please, Sign In to add comment