Posts

Showing posts with the label Funny Coding

💻 FAKE VIRUS Prank Using Python – SYSTEM INFECTED Shocking Reaction 😱

Image
  Demo : Click Video ðŸ‘‡ðŸ‘‡ðŸ‘‡ Code : import tkinter as tk from tkinter import messagebox import time import threading import random class FakeVirusApp:     def __init__(self, root):         self.root = root         self.root.title("System Infection Detected ⚠️")         self.root.geometry("600x450")  # Increased height slightly         self.root.configure(bg="black")         self.root.resizable(False, False)         # SYSTEM INFECTED label         self.label = tk.Label(root, text="⚠️ SYSTEM INFECTED ⚠️", font=("Helvetica", 24, "bold"),                               fg="red", bg="black")         self.label.pack(pady=20)         # Text area         self.text_area = tk.Text(root, width=70, height=...