As an aside, you can remove an object from a list more easily with the "remove" method:
words.remove("".join(orgword) + "\n") (The newline is on the end because readlines doesn't remove it). And write a whole bunch of lines to a file via writelines:
filew=open('words.txt', 'w')
filew.writelines(words)
filew.close()