https://www.bilibili.com/video/BV19m411d73i/?vd_source=94be39222e1a0a1b8fe080aa992d72ac
test.py
# 抽奖
# pip install Flask
from flask import Flask, render_template
from random import randint
app = Flask(__name__)
hero = [
"黑暗之女",
"德邦总管",
"亡灵战车",
"猩红收割者",
"牛头",
"猴子",
"巨魔",
"奥拉夫"
]
@app.route("/index")
def index():
return render_template("index.html", hero=hero)
@app.route("/choujiang")
def choujiang():
idx = randint(0, len(hero)-1)
return render_template("index.html", hero=hero, h=hero[idx])
app.run(debug=True)
templates/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>抽奖</title>
</head>
<body>
所有英雄:{{hero}}</br>
<a href="/choujiang">开始抽奖</a></br>
你选中的英雄:{{h}}
</body>
</html>