exe
程序,发给朋友才有意思。pip install pyinstaller
。
无聊程序之一
n = input("猜猜我在想啥?")
print("猜错喽")
无聊程序之二
tkinter.messagebox.showerror('Windows 错误','你的电脑正在被攻击!')
无聊程序之三
while True:
webbrowser.open('www.csdn.net')
无聊程序之四
import random
import threading
import timedef 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("200x50" + "+" + str(a) + "+" + str(b))
tk.Label(window, text='你是一个傻狍子', bg='green',
font=('宋体', 17), width=20, height=4).pack()
window.mainloop()
threads = []
for i in range(100):
t = threading.Thread(target=boom)
threads.append(t)
time.sleep(0.1)
threads[i].start()
无聊程序之五
import time
a = """ oooo oooooooooo. .oooooo..o oooo o8o oooo oooo
`888 `888' `Y8b d8P' `Y8 `888 `"' `888 `888
888 888 888 Y88bo. .ooooo. .ooooo. 888 oooo oooo 888 888
888 888 888 `"Y8888o. d88' `88b d88' `"Y8 888 .8P' `888 888 888
888 888 888 8888888 `"Y88b 888ooo888 888 888888. 888 888 888
888 888 d88' oo .d8P 888 .o 888 .o8 888 `88b. 888 888 888
.o. 88P o888bood8P' 8""88888P' `Y8bod8P' `Y8bod8P' o888o o888o o888o o888o o888o
`Y888P
功能列表:
1.预约商品
2.秒杀抢购商品
"""
print(a)key = input("请选择:")
if key == "1":
time.sleep(1.5)
print('没有预约到n')
time.sleep(3)
print('没事的,来抱一哈n')
else:
print("既然如此...")
time.sleep(3)
print("那你想得美~~~~~")
os.system('shutdown -r -t 10')
time.sleep(10)
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何取消python中的换行符10/05
- ♥ python可以确定变量的类型吗?11/13
- ♥ 你所不知道的python循环中的else12/23
- ♥ 如何在 spyder 中运行 python 文件09/11
- ♥ 如何在Python中实现max函数max函数?10/11
- ♥ 如何在python中对一组数字进行排序11/06
内容反馈