Untitled
Anonymous
plain_text
03/24/2023 6:08 PM
456 B
15
Indexable
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
product_name = "Cool Product"
product_description = "This product is amazing and will change your life!"
return render_template('index.html', name=product_name, description=product_description)
if __name__ == '__main__':
app.run()
Editor is loading...