赞
踩
生活中当我们给朋友发消息不回时就可以为他发送一个无限弹窗打代码,他因为好奇打开了那么他就中计了,没有中计我们也不会损失什么
- import tkinter as tk
- import random
- import threading
- import time
-
-
- def dow():
- window = tk.Tk()
- window.title('你是XX')
- window.geometry("200x50" + "+" + str(random.randrange(0, window.winfo_screenwidth())) + "+" + str(random.randrange(0, window.winfo_screenheight())))
- tk.Label(window,
- text='你是个XXX!', # 标签的文字
- bg='Black', # 背景颜色
- font=('楷体', 17), # 字体和字体大小
- width=20, height=2 # 标签长宽
- ).pack() # 固定窗口位置
- window.mainloop()
-
-
- threads = []
- # while True: #这句为死循环,无限弹窗
- for i in range(100): # 需要的弹框数量
- t = threading.Thread(target=dow)
- threads.append(t)
- time.sleep(0.1)
- threads[i].start()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。