This is what I know how to write and save it
Html_file= open\"(filename\",\"w\") Html_file.write() Html_file.close
But how do I save to the
You can do it using write() :
#open file with *.html* extension to write html file= open("my.html","w") #write then close file file.write(html) file.close()