[python]代码库
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("280x50" + "+" + str(a) + "+" + str(b))
tk.Label(window,
text='小猪猪情人节快乐!', # 标签的文字
bg='Pink', # 背景颜色
font=('楷体', 17), # 字体和字体大小
width=23, height=2 # 标签长宽
).pack() # 固定窗口位置
window.mainloop()
threads = []
for i in range(100): # 需要的弹框数量
t = threading.Thread(target=dow)
threads.append(t)
time.sleep(0.05)
threads[i].start()
# 打包exe文件方法
# https://yuncode.net/code/c_636a993413e1740
[代码运行效果截图]