• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Python+Tkinter抽奖小程序

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

学习Python的GUI编程,编写了一个随机抽取姓名的小程序,主要参考资料

http://www.10tiao.com/html/383/201703/2247484257/1.html

 

import tkinter
import random
import threading
import time

#初始化窗口
root=tkinter.Tk()
root.title("随机名单")
root.geometry('500x500+400+200')
root.resizable(False,False)
root.flag = True


#三个Lable标签
first = tkinter.Label(root,text='',font = ("宋体", 20,"normal"))
first.place(x=180,y=100,width=150,height=100)

second = tkinter.Label(root,text='',font = ("宋体", 20,"normal"))
second['fg'] = 'red'
second.place(x=180,y=200,width=150,height=100)

third = tkinter.Label(root,text='',font = ("宋体", 20,"normal"))
third.place(x=180,y=300,width=150,height=100)


students=['杨姐姐1','杨姐姐2','杨姐姐3','杨姐姐4','杨姐姐5','杨姐姐6']

def switch():
    root.flag=True
    while root.flag:
        i=random.randint(0, len(students)-1)
        first['text']=second['text']
        second['text']=third['text']
        third['text']=students[i]
        time.sleep(0.1)


#开始按钮
def butStartClick():
    t=threading.Thread(target=switch)
    t.start()
btnStart=tkinter.Button(root,text='开始',command=butStartClick)
btnStart.place(x=30, y=30, width=80, height=20)

#结束按钮
def btnStopClick():
    root.flag=False
    
butStop=tkinter.Button(root,text='停止',command=btnStopClick)
butStop.place(x=160, y=30, width=80, height=20)

#启动主程序
root.mainloop()

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
关闭QQ右下角弹窗小程序发布时间:2022-07-18
下一篇:
小程序跳回首页不支持回退问题发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap