摘要: import tkinter as tk root = tk.Tk() root.title("info") tk.Label(root, text="弹窗", ).pack() #text为弹窗内容 root.after(1000, lambda: root.destroy()) #数字为停留时间 阅读全文
posted @ 2021-10-14 08:58 Cl~樂 阅读(565) 评论(0) 推荐(0)