Python Forum
[Tkinter] Clearing Text in Tkinter
Thread Rating:
  • 2 Vote(s) - 1.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Clearing Text in Tkinter
#2
You need to use textvariable

You need to change your structure in how you are doing things. For example you are creating a new label every time you callback, instead just make the one label, and set it in the callback. Also you should really consider using classes (OOP).

Here is a small example using textvariable. Keep pressing the button and the label changes based on the current epoch timestamp.
import tkinter as tk
import time

def callback():
    lbl.set('{}'.format(time.time()))
    
root = tk.Tk()
lbl = tk.StringVar()
lbl.set('default')
tk.Label(root, textvariable=lbl).pack()
tk.Button(root, text="Get Time", command=callback).pack()


root.mainloop()
    
Recommended Tutorials:
Reply


Messages In This Thread
Clearing Text in Tkinter - by icabero0225 - May-31-2017, 02:01 AM
RE: Clearing Text in Tkinter - by metulburr - May-31-2017, 03:03 AM
RE: Clearing Text in Tkinter - by icabero0225 - May-31-2017, 09:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Updating tkinter text BliepMonster 5 6,657 Nov-28-2022, 01:42 AM
Last Post: deanhystad
  [Tkinter] The Text in the Label widget Tkinter cuts off the Long text in the view malmustafa 4 5,430 Jun-26-2022, 06:26 PM
Last Post: menator01
  [Tkinter] Clearing listboxes klatlap 3 2,574 Feb-01-2022, 04:50 PM
Last Post: deanhystad
  tkinter change the text of the checkbox zazas321 1 4,008 Sep-17-2021, 06:19 AM
Last Post: zazas321
  tkinter text widget word wrap position chrisdb 6 7,796 Mar-18-2021, 03:55 PM
Last Post: chrisdb
  [Tkinter] tkinter.Menu – How to make text-variable? Sir 3 5,782 Mar-10-2021, 04:21 PM
Last Post: Sir
Photo Tkinter TEXT background image _ShevaKadu 5 8,052 Nov-02-2020, 10:34 AM
Last Post: joe_momma
  tkinter | Button color text on Click Maryan 2 3,512 Oct-09-2020, 08:56 PM
Last Post: Maryan
  [Tkinter] Text Upload LearningLittlebyLittle 0 2,106 Sep-04-2020, 07:55 PM
Last Post: LearningLittlebyLittle
  [Tkinter] Indentation for Tkinter-made Text Editor ShakeyPakey 4 5,315 Jun-08-2020, 03:13 PM
Last Post: menator01

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020