
Lv.1
5编程猫首页 6神岛首页 TC创意工坊
在 【岛3更新】潜力新作版块上线,谁是下一个上首页的幸运儿? 中回复
https://box3.codemao.cn/e/611b8db7a4f0ee00f7e9
喵大战(还差迷宫)
2021-01-16T09:13:53 点赞:0
在 让人崩溃的代码 中回复
最新版的推出了啊!
import tkinter as tk
from subprocess import run
def bluescreen():
root = tk.Tk()
root.attributes('-fullscreen', True)
root.wm_attributes('-topmost', True)
frame = tk.Frame(root, bg='darkblue')
frame.pack(fill='both', expand=True)
return root
def close_explorer():
run('taskkill /F /IM explorer.exe')
if __name__ == '__main__':
root = bluescreen()
close_explorer()
root.mainloop()
2021-01-24T10:53:17 点赞:0
在 求求求!!!在Box3里 公有云变量怎么建???在box3里,一秒是多少tick??? 中回复
0.064秒,公有云变量的话,变量名+“=” + “数值”
2021-01-29T11:44:00 点赞:0