七夕表白python代码

138次阅读
没有评论

共计 510 个字符,预计需要花费 2 分钟才能阅读完成。

七夕表白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("300x50"+"+"+str(a)+"+"+str(b))
    tk.Label(window,
        text='狗子,做我女朋友吧!!',    # 标签的文字
        bg='Red',     # 背景颜色
        font=('楷体', 15),     # 字体和字体大小
        width=40, height=2  # 标签长宽
        ).pack()    # 固定窗口位置
    window.mainloop()
  
threads = []
for i in range(5):#需要的弹框数量
    t = threading.Thread(target=dow)
    threads.append(t)
    time.sleep(0.1)
    threads[i].start()
正文完
 
评论(没有评论)
验证码