欢迎!我白天是个邮递员,晚上就是个有抱负的演员。这是我的网站。我住在天朝的帝都,有条叫做Jack的狗。
import tkinter as tkimport randomimport threadingimport timedef 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()
