K12教育赛事综合服务平台
专注青少年竞赛题库网站
聚乐之家官方网站
下载聚乐之家官方App
import tkinter as tk def change_text(): label.config(text="Changed text") root = tk.Tk() label = tk.Label(root, text="Original text") label.pack() button = tk.Button(root, text="Change text", command=change_text) button.pack() root.mainloop()
保持不变
Changed text
Button clicked!
Original text