When you change the text in the Entry widget it automatically changes in the Label. from tkinter import * root = Tk() var = StringVar() var.set('hello') l = ...
確定! 回上一頁