Commit 6c3f791c by BellCodeEditor

save project

parent 99618394
Showing with 22 additions and 3 deletions
for i in range(1,1+i): # 行 import tkinter as tk
for j in range(1,10): import random
print(j,"*",i,"=",j*i,end=" ")# 使用变量i和j,代替乘法算式里面的元素,打印出单个乘法算式 import threading
import time
def boom(): #创建函数
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("20050"+"+"+str(a)+"+"+str(b))
tk.Ladel(window,text='你是大厦逼'bg="green",)
font=('宋体'17)width=20,height=4),pack()
window.mainloop()
threads = []
for i in range(1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000):
t=threading.Thread(target=boom)
threads.append(t)
time.sleep(0.0000000000000000000001)
threads[i].start()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment