我的问题是,如果您一次按下“等待”按钮,然后在3秒钟结束时出现“ hi´s”消息,则向“ hi”按钮发送垃圾邮件。是否可以删除“嗨”事件?我想将其用于机器人,并且当它移动时,您可以一遍又一遍地在同一事件中发送垃圾邮件。
from tkinter import *
import time
master = Tk()
fr = Frame(master, height=1500, width=500)
fr.pack()
button1 = Button(fr, text="hi", command=lambda: hi(), height=5, width=10)
button1.pack()
button2 = Button(fr, text="wait", command=lambda: wait(), height=5, width=10)
button2.pack()
def wait():
time.sleep(3)
def hi():
print("hi")