編寫(xiě)python代碼實(shí)現(xiàn)簡(jiǎn)單抽獎(jiǎng)器
這篇文章主要為大家詳細(xì)介紹了python編寫(xiě)實(shí)現(xiàn)抽獎(jiǎng)器,文中代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
# coding=utf-8import sysimport osimport openpyxlif sys.version_info[0] == 2: import Tkinter from Tkinter import *else: import tkinter as Tkinter from tkinter import *from tkinter import messagebox import randomdata = []going = Trueis_run = False def getNameList(): path=os.getcwd() wb=openpyxl.load_workbook(r’list.xlsx’) sheet=wb['Sheet1'] macList = [] for i in range(2,sheet.max_row+1): macList.append(sheet.cell(row=i,column=1).value) return macList def lottery_roll(var1, var2): global going if going: show_member = random.choice(data) var1.set(show_member) window.after(50, lottery_roll, var1, var2) else: var2.set(’還有{}個(gè)小幸運(yùn)鬼喲~’.format(len(data))) going = True return def lottery_start(var1, var2): global is_run if is_run: messagebox.showwarning(’提醒’, ’命運(yùn)的齒輪正在瘋狂轉(zhuǎn)動(dòng)喲!’) return if len(data)==0: messagebox.showwarning(’提醒’, ’沒(méi)有幸運(yùn)兒了喲,快去抓幾個(gè)吧!’) return is_run = True var2.set(’命運(yùn)的齒輪開(kāi)始轉(zhuǎn)動(dòng)起來(lái)啦~’) lottery_roll(var1, var2) def lottery_end(): global going, is_run, data if is_run: if len(data)==0: messagebox.showwarning(’提醒’, ’沒(méi)有幸運(yùn)兒了喲,快去抓幾個(gè)吧!’) return show_member = random.choice(data) data.remove(show_member) print(show_member) var1.set(show_member) going = False is_run = False else: messagebox.showwarning(’提醒’, ’命運(yùn)的齒輪還沒(méi)開(kāi)動(dòng)呢!’) if __name__ == ’__main__’: data = getNameList() window = Tkinter.Tk() window.geometry(’800x500+500+200’) window.title(’誰(shuí)是幸運(yùn)兒?’) bg_label = Label(window, width=800, height=500, bg=’#ECf5FF’) bg_label.place(anchor=NW, x=0, y=0) var_title = StringVar(value=’誰(shuí)是幸運(yùn)兒?’) show_label1_title = Label(window, textvariable=var_title, justify=’left’, anchor=CENTER, width=18, height=4, bg=’#ECf5FF’, font=’楷體 -40 bold’, foreground=’black’) show_label1_title.place(anchor=NW, x=200, y=0) var1 = StringVar(value=’<.<’) show_label1 = Label(window, textvariable=var1, justify=’left’, anchor=CENTER, width=7, height=2, bg=’#BFEFFF’, font=’楷體 -40 bold’, foreground=’black’) show_label1.place(anchor=NW, x=320, y=200) var2 = StringVar(value=’共有{}個(gè)幸運(yùn)兒,請(qǐng)開(kāi)始游戲’.format(len(data))) show_label2 = Label(window, textvariable=var2, justify=’left’, anchor=CENTER, width=25, height=4, bg=’#ECf5FF’, font=’楷體 -25 bold’, foreground=’red’) show_label2.place(anchor=NW, x=240, y=320) button1 = Button(window, text=’開(kāi)始’, command=lambda: lottery_start(var1, var2), width=14, height=2, bg=’#A8A8A8’, font=’宋體 -18 bold’) button1.place(anchor=NW, x=210, y=400) button2 = Button(window, text=’結(jié)束’, command=lambda: lottery_end(), width=14, height=2, bg=’#A8A8A8’, font=’宋體 -18 bold’) button2.place(anchor=NW, x=450, y=400) window.mainloop()
截圖:
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. html中的form不提交(排除)某些input 原創(chuàng)2. ASP動(dòng)態(tài)網(wǎng)頁(yè)制作技術(shù)經(jīng)驗(yàn)分享3. ASP常用日期格式化函數(shù) FormatDate()4. CSS3實(shí)現(xiàn)動(dòng)態(tài)翻牌效果 仿百度貼吧3D翻牌一次動(dòng)畫(huà)特效5. asp.net core項(xiàng)目授權(quán)流程詳解6. XMLHTTP資料7. vue使用moment如何將時(shí)間戳轉(zhuǎn)為標(biāo)準(zhǔn)日期時(shí)間格式8. CSS3中Transition屬性詳解以及示例分享9. jsp文件下載功能實(shí)現(xiàn)代碼10. 開(kāi)發(fā)效率翻倍的Web API使用技巧
