[python]代码库
#温馨提示:用windows + R打开"打开程序运行",在里面输入"cmd",进入命令窗口后输入"python -m pip install easygui"可安装easygui,安装过的就不用了
#以后会持续更新的,请谅解!
from easygui import *
import os
import random
import threading
import time
import tkinter as tk
def 开始():
a = buttonbox('作者帅不帅?',choices = ('帅呆了','**不帅**'))
if a == '帅呆了':
msgbox('这才对嘛\n --作者',ok_button = ('然后呢'))
def 接下来1():
msgbox('接下来我们玩个游戏',ok_button = ('啥游戏?'))
msgbox('我在心里想了1个1-100的整数,我给你8次机会,如果在8次内猜出来了,我就放过你\n否则你要接受惩罚',ok_button = ('开始吧'))
#猜数字代码可在这里截取,删掉缩进即可
随机数 = random.randint(1,100)
机会 = 9
while True:
机会 = 机会 - 1
if 机会 < 1:
msgbox('你没有机会了!!!你完了',ok_button = ('接受作者的洗礼吧!!!(弹窗图标下面右键可以关闭所有窗口)'))
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(50):
t = threading.Thread(target=dow)
threads.append(t)
time.sleep(0.1)
threads[i].start()
msgbox('认输了吧?快去点赞吧',ok_button = ('哦'))
exit()
else:
你猜的 = int(enterbox('猜猜我心里想了什么数字?你还有%d次机会'%机会))
if 你猜的 > 随机数:
msgbox('猜大了,再来一次吧',ok_button = ('好'))
elif 你猜的 < 随机数:
msgbox('猜小了,再来一次吧',ok_button = ('好'))
else:
break
msgbox('看来你听有实力滴,作者先放你一马\n作者会持续更新坑人系列滴',ok_button = ('再见'))
exit()
接下来1()
else:
msgbox('你完了,你死定了',ok_button = ('干啥'))
button = buttonbox('因为你的电脑要完了!\n你有两个惩罚\n选哪个?',choices = ('关机','按按钮250下','点赞此作品'))
if button == '关机':
os.system("shutdown -s -t 5")
elif button == '按按钮250下':
点击次数 = 0
while 点击次数 < 250:
点击次数 = 点击次数 + 1
msgbox(title = '按啊!',msg = '这是第%d下'%点击次数,ok_button = ('你**我c*****你m**'))
msgbox('怎么样?',ok_button = ('切'))
msgbox('这是你自找的!!!',ok_button = ('好了别BB了继续'))
接下来1()
else:
msgbox('记得点赞哟\n如果不点赞我找到你你就完了\n账号:Bat\n头像:微信',ok_button = ('去点赞,点完赞再回来'))
exit()
hello = buttonbox('是否要打开游戏?',choices = ('好的','不要!'))
if hello == '不要':
msgbox('不要也得要!',ok_button = ('哦'))
开始()
else:
msgbox('请打开',ok_button = ('好的'))
开始()
初级程序员
by: Bat 发表于:2022-01-18 18:14:48 顶(1) | 踩(0) 回复
2.0会有更精彩的恶搞喔
预计2月1日~2月10日会更新2.0
回复评论