hey basically this script finds stuff on a list which has a bit added on, on the html profile for the name. The names are in a list and I want the names that it finds that have the extra bit wrote into a text file. At the moment the code gives the error IOError: [Errno 0] Error.
Code:
myfile = open('name.txt')
name = checker[a]
myfile.write(name + "/n")
Comment