第一项:
抽奖代码
‘1.我们需要让我们的电脑需要一个支持服务访问
需要一个web框架
所以我们可以 先 pip install Flask
下面这个代码是让别的服务器访问我们的127.0.0.4/index时能返回出hello
from flask import Flask
app = Flask(_name_)
hero=['1','2']
@app.route('/index')
dex index():
return 'Hello!'
app.run(debug=True)
创建一个抽奖模板
feom flask Flask,render_template? template是你创建的一个文件夹
文件夹里有一个html文件 文件内容是常见的html模板
算了懒得自己敲了 赶时间
接下来我们需要完善html里面的内容
在下图里 我们能给html里的hero赋值和我们自己的hero一样的值
python的随机模块
然后我们完善python里面的值
@。。。。。。抽奖
定义了一个抽奖界面 然后我们创建了一个数字等于 多少多少? ?然后返回了一个英雄名 h等于数组?
源代码如下
#让我们的电脑可以支持服务访问
#需要一个web框架
# pip install Flask
from flask
port Flask,render_template
from randck
nport randint
app =Flask(__name__)
hero =[
‘黑暗之女’,‘狂战士’,’正义巨像’,’卡牌大师’,’德邦总管’,’无畏战车’,‘诡术妖姬’,
‘猩红收割者’,‘远古恐惧’,‘正义天使’,‘无极剑圣’,‘牛头酋长’,’符文法师’,‘亡灵战神’,’战争女神’
1
@app.route('/index')
def index():
return render_template('index.html',hero = hero)
@app.route('/choujiang')
def choujiang():
num = randint(e,len(hero)-1)
return render_template('index.html',hero = hero, h = hero[num])
app.run(debug=True)
创建的html文件
<1DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
{{ hero }}<br/>
<a href="/choujiang">随机抽取</a><br/>
您抽到了:{{h
</body>
/htm.