I am creating a page scraper and would like to include a text file that contains the words such as 'a', 'the', 'on' etc. But not sure how to do this, i think I have created the file
fin=open("ignorelist.txt","w")
for line in fin:
but not sure how to go about filling the file with these words found, any help would be great.