赞
踩
效果如下:
演示视频:
python弹窗恶搞程序演示视频
教程:
1,导入模块,下载模块的方法不过多说明了,可以看我其他的文章有说怎么下载第三方模块,或者Alt+Enter下载也可。
- # 弹窗恶搞
- import tkinter as tk
- import random
- import threading
- import time
2,复制如下代码,运行即可
- 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=('楷体', 18), # 字体和字体大小
- width=25, height=4 # 标签长宽
- ).pack() # 固定窗口位置
- window.mainloop()
-
-
- threads = []
- for i in range(9999): # 需要的弹框数量
- t = threading.Thread(target=dow)
- threads.append(t)
- time.sleep(0.01)
- threads[i].start()
3,普通人没有python环境不能执行,你就需要去将py程序封装为exePC端可执行程序了。
python程序封装成exe程序的方法我其他文章有教学(简单易懂):(178条消息) pyton打包成exe程序简易教程_kkkliaoo的博客-CSDN博客
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。