I'm trying to generate HTML with Python, what I want to show is just a string, but for some reason it does not take into account the string, I hope you can help me
def html_create(self,result):
template = open("template.html","r")
output = open("us.html","w")
text = template.read().format(get_result = result)
html = output.write(text)
template.close()
output.close()
& in my temple I recive it in the following way
<p> (get_result) </p>