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('⽣⽇快乐')
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()吓⼈呢~~~~~~~~
提⽰:如果程序不可运⾏,那就是软件不同的问题,请谅解!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。