今天是端午节

分享一段弹窗端午安康的代码

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,random,height,width,window,import

技术
下载桌面版
GitHub
百度网盘(提取码:draw)
Gitee
云服务器优惠
阿里云优惠券
腾讯云优惠券
华为云优惠券
站点信息
问题反馈
邮箱:ixiaoyang8@qq.com
QQ群:766591547
关注微信