条件判断

Posted 道高一尺

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了条件判断相关的知识,希望对你有一定的参考价值。

from flask import Flask, render_template


app = Flask(__name__)

@app.route("/user/<user_id>")
def get_user(user_id):
    user = None
    if int(user_id) == 1:
        user = "kevin durant"
    return render_template("index.html", user=user)


if __name__ == __main__:
    app.run(debug=True)

#index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>title</title>
</head>
<body>
{% if user %}
    hello, you are {{ user }}
{% else %}
    sorry, do not find your name
{% endif %}
</body>
</html>

 

以上是关于条件判断的主要内容,如果未能解决你的问题,请参考以下文章

初识python-条件判断

PHP WordPress条件为主页SlideDeck主题代码片段

条件片段和导航重用

Python代码阅读(第38篇):根据谓词函数和属性字符串构造判断函数

简化条件表达式

4.3 合并重复的条件执行片段