filmov
tv
Tkinter Text Variable.
Показать описание
Leave a comment on what you want to see next
Code from the video here:
——————————————————————
import tkinter as tk
root = tk.Tk()
name = tk.Variable()
tk.Entry(root, textvariable=name).pack()
def work():
tk.Button(root, text="print name!", command=work).pack()
——————————————————————
Code from the video here:
——————————————————————
import tkinter as tk
root = tk.Tk()
name = tk.Variable()
tk.Entry(root, textvariable=name).pack()
def work():
tk.Button(root, text="print name!", command=work).pack()
——————————————————————