Hi
I am wondering how to write a list to an html file from scratch. I am currently writing it to a file using:
def wpubooks(self):
for i in booklist:
s=str(booklist)
f=open('/booklist', 'a')
f.write(i + '\n')
Is there a way I can change that code so that it writes to an html file instead?