Hey all,
I think I'm having a pretty basic problem - just started using python today. The code reads as follows:
f=open("sortjuly.txt","r")
for line in f:
line_txt = line
page_txt = open(line_txt,"r").read()
text = open(page_txt,"r").read()
print(page_txt +...