当前位置 : 主页 > 编程语言 > python >

python实现抽奖程序

来源:互联网 收集:自由互联 发布时间:2022-12-20
基本思路:从LOL英雄联盟中取4个英雄作为抽奖对象,用Flask框架搭建模拟抽奖程序。 一、Flask框架的简单应用 二、random 随机模块的简单应用,生成随机整数 三、python完整实例 from fla

基本思路:从LOL英雄联盟中取4个英雄作为抽奖对象,用Flask框架搭建模拟抽奖程序。

一、Flask框架的简单应用

二、random 随机模块的简单应用,生成随机整数

三、python完整实例

from flask import Flask, render_templatefrom random import randintapp = Flask(__name__)hero = ['黑暗之女', '狂战士', '正义巨像', '卡牌大师']@app.route('/index')def index(): return render_template('index.html', hero=hero)@app.route('/choujiang')def choujiang(): num = randint(0, len(hero)-1) return render_template('index.html', hero=hero, h=hero[num])app.run(debug=True)

四、html文件

<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title></head><body> {{hero}}<br/> <a href="/choujiang">随机抽取</a></br> 您抽到了:{{h}}</body></html>

python实现抽奖程序_html

python实现抽奖程序_python_02

【文章原创作者:大丰网页开发 http://www.1234xp.com/dafeng.html 处的文章,转载请说明出处】
上一篇:Python3 函数式编程
下一篇:没有了
网友评论