码迷,mamicode.com
首页 > 编程语言 > 详细

python之端午到了

时间:2019-06-07 23:20:38      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:target   需要   threading   今天   reads   get   int   pac   rand   

今天是端午节
分享一段弹窗端午安康的代码
import tkinter as tk
import random
import threading
import time
def dow():
window = tk.Tk()
width = window.winfo_screenwidth()
height = window.winfo_screenheight()
a = random.randrange(0, width)
b = random.randrange(0, height)
window.title(‘端午安康‘)
window.geometry("200x50" + "+" + str(a) + "+" + str(b))
tk.Label(window,
text=‘端午安康!‘, # 标签的文字
bg=‘Green‘, # 背景颜色
font=(‘楷体‘, 17), # 字体和字体大小
width=15, height=2 # 标签长宽
).pack() # 固定窗口位置
window.mainloop()
threads = []
for i in range(100): # 需要的弹框数量
t = threading.Thread(target=dow)
threads.append(t)
time.sleep(0.1)
threads[i].start()

python之端午到了

标签:target   需要   threading   今天   reads   get   int   pac   rand   

原文地址:https://www.cnblogs.com/changyifei-8/p/10989273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!