import tkinter as tk app = tk.Tk() app.title('List box') def clicked(): print("clicked") selected = box.curselection() # returns a tuple for idx in ...
確定! 回上一頁