from flask import Flask,render_template app = Flask(__name__) app.config.update({ 'DEBUG':True, 'TEMPLATES_AUTO_RELOAD':True }) @app.route('/') def index(): context={ 'username':'了', 'age':17 }
return render_template('index.html',**context)
#html
<body> {% if username=='知了'%} <p>知了课堂</p> {% else %} <p>我不是知了课堂</p> {% endif %} {% if age>=18 %} <p>你可以进入网吧</p> {% else %} <P>未成年人</P> {% endif %} </body>
