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('520快乐')
window.geometry("200x50"+"+"+str(a)+"+"+str(b))
tk.Label(window,
text='亲爱的嫁给我吧!', # 标签的文字
bg='Red', # 背景颜色
font=('楷体', 15), # 字体和字体大小
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教程
七夕表白弹窗Python源码
python教程
51源码
2024-06-27
共人阅读
版权声明:文章搜集于网络,如有侵权请联系本站,转载请说明出处:https://www.51yma.cn/jiaocheng/python/1473.html
文章来源:
下一篇: 返回列表
热门推荐
-
01python中condition条件变量的作用 500
-
02Python自动爬取轻壁纸网站脚本 177
-
03python每日自动批量推送URL到百度站长工具 125
-
04python使用VS接收数据 83
-
05Day2:列表与字典 79
