(Novice btw) I’m using Python + Flask
I have Python variable I want to place in as a substitute for a value=" "
My attempt: value="{{ variable }}"
didn’t work
<form>
<textarea value="{{ result }}"></textarea>
</form>
render_template("home.html", result=result)
Any guidance appreciated.
>Solution :
Try <textarea>{{ result }}</textarea>
instead of <textarea value="{{ result }}"></textarea>