Bootstrap

用python画颗爱心祝生日快乐_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("200x50"+"+"+str(a)+"+"+str(b))

tk.Label(window,

text='生日快乐!',    # 标签的文字

bg='Red',     # 背景颜色

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()6c8e0fb2e681f261265ba4cbd9e14d9448f39642.jpg吓人呢~~~~~~~~

提示:如果程序不可运行,那就是软件不同的问题,请谅解!

;