HI, I am trying to read words from a .lst file using a python script. I tried reading as if it was a normal text file but that did not work. Does anyone have a suggestion? This is what I tried: f = open("C:\\dir\\word.lst", "r") for word in f: print word f.close() Code (markup):