Posts by Leonardo • 11 points
1 post
-
-1
votes1
answer28
viewsQ: Using . get() in your window with Tkinter
when I try to use the code: import tkinter as tk window = tk.Tk() texto = tk.Text(window).pack() tk.mainloop() print(texto.get()) to return the value of what I wrote in the variable text the program…