Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / level3-lesson17-diy3

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • level3-lesson17-diy3
  • 1.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    auto save · 51ee197c
    BellCodeEditor committed a year ago
    51ee197c
1.py 796 Bytes
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
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('中毒了!')

    window.geometry("200x50" +"+" +str(a) +"+" +str(b))

    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()