I’m trying to show python data in my HTML and the output is not what I expected

Solution
{{count()}}
@app.route('/')
def home():
    result = handler()
    return render_template("index.html", count=result)