python(6小项目)---大转盘

代码

from tkinter import *
import threading
import time
root = Tk()
root.title('大转盘')
root.minsize(300,300)

btn1=Button(root,text='樱桃',bg='red')
btn1.place(x=20,y=20,width=50,height=50)

btn2 = Button(root, text='香蕉', bg='white')
btn2.place(x=90, y=20, width=50, height=50)

btn3 = Button(root, text='苹果', bg='white')
btn3.place(x=160, y=20, width=50, height=50)

btn4 = Button(root, text='西瓜', bg='white')
btn4.place(x=230, y=20, width=50, height=50)

btn5 = Button(root, text='鸭梨', bg='white')
btn5.place(x=230, y=90, width=50, height=50)

btn6 = Button(root, text='榴莲', bg='white')
btn6.place(x=230, y=160, width=50, height=50)

btn7 = Button(root, text='柚子', bg='white')
btn7.place(x=230, y=230, width=50, height=50)

btn8 =Button(root, text='葡萄', bg='white')
btn8.place(x=160, y=230, width=50, height=50)

btn9 = Button(root, text='草莓', bg='white')
btn9.place(x=90, y=230, width=50, height=50)

btn10 = Button(root, text='芒果', bg='white')
btn10.place(x=20, y=230, width=50, height=50)

btn11 = Button(root, text='荔枝', bg='white')
btn11.place(x=20, y=160, width=50, height=50)

btn12 = Button(root, text='甘蔗', bg='white')
btn12.place(x=20, y=90, width=50, height=50)

fruitlist=[btn1,btn2,btn3,btn4,btn5,btn6,btn7,btn8,btn9,btn10,btn11,btn12,]


i=0
stopid=0
flag=False
def round():
    global i
    global flag
    global stopid
    print('进入round')
    for item in fruitlist:
        item['bg']='white'
    while True:
        fruitlist[i]['bg']='red'
        time.sleep(0.2)
        fruitlist[i]['bg']='white'
        print(i)
        if i>=11:
            i=0
        else:
            i+=1
        if not flag:
            stopid=i
            fruitlist[i]['bg']='red'
            break

def action():
    global flag
    global i
    print('进入action')
    if not flag:
        flag=True
        i=stopid
        t=threading.Thread(target=round)
        t.start()

def stop():
    print('进入stop')
    global flag
    flag=False

btn_start=Button(root,text='开始',command=lambda : action())
btn_start.place(x=90,y=125,width=50,height=50)
btn_stop=Button(root,text='暂停',command=lambda : stop())
btn_stop.place(x=160,y=125,width=50,height=50)

root.mainloop()

运行结果

在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值