Guest User

Untitled

a guest
Apr 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def html_create(self,result):
  2. template = open("template.html","r")
  3. output = open("us.html","w")
  4. text = template.read().format(get_result = result)
  5. html = output.write(text)
  6. template.close()
  7. output.close()
  8.  
  9. <p> (get_result) </p>
Add Comment
Please, Sign In to add comment