摘要:
需要使用第三方库, 代码如下: ```python import tkinter as tk import keyboard def output(event): #print("From global keystroke") print(event) root = tk.Tk() root.wit 阅读全文
摘要:
在平时编程时, 经常会遇到循环运行一个函数的情况, 我们可以编写一个装饰器来简化这个过程, 实现代码如下: ```python def LoopRun(duration:float=60,interval:float=1,remainder:float=3)->callable: ''' 支持长期运 阅读全文