我现在有一个tkiner弹框,我想每隔1秒显示一个text,
现代码:
import tkinter
from time import sleep
win = tkinter.Tk()
text = tkinter.Text(win)
text.insert(tkinter.INSERT, "")
text.insert(tkinter.INSERT, "\r\n")
text.insert(tkinter.INSERT, "")
text.insert(tkinter.INSERT, "\r\n")
text.insert(tkinter.INSERT, "")
text.insert(tkinter.INSERT, "\r\n")
text.insert(tkinter.INSERT, "")
text.insert(tkinter.INSERT, "\r\n")
text.insert(tkinter.INSERT, "")
text.pack()
win.mainloop()
希望可以解决 如果有帮助会采纳