Python Forum
[Tkinter] Updating tkinter text
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Updating tkinter text
#5
(Nov-24-2022, 07:22 PM)wuf Wrote: It works also like this:
import tkinter as tk

import time

def get_time(canvas):
    show = time.strftime(f'%I:%M:%S %P')
    canvas.itemconfig(var, text=show)
    canvas.after(1000, get_time, canvas)

root = tk.Tk()

canvas = tk.Canvas(root, width=600, height=500, bg='antiquewhite')
show = time.strftime(f'%I:%M:%S %P')
var = canvas.create_text(300,100, text=show, fill='blue', font=('serif', 20, 'bold'))
canvas.pack()

get_time(canvas)

root.mainloop()
Greetings wuf Smile
I tried running the code.
Error:
Traceback (most recent call last): File "C:\Users\Wannes\canvas update.py", line 13, in <module> show = time.strftime(f'%I:%M:%S %P') ValueError: Invalid format string
The only stupid person in the world, is the person that doesn't ask questions.
-Someone smart
Reply


Messages In This Thread
Updating tkinter text - by BliepMonster - Nov-24-2022, 03:40 PM
RE: Updating tkinter text - by woooee - Nov-24-2022, 05:56 PM
RE: Updating tkinter text - by menator01 - Nov-24-2022, 06:07 PM
RE: Updating tkinter text - by wuf - Nov-24-2022, 07:22 PM
RE: Updating tkinter text - by BliepMonster - Nov-27-2022, 05:00 PM
RE: Updating tkinter text - by deanhystad - Nov-28-2022, 01:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Updating Tkinter label using multiprocessing Agusms 6 3,243 Aug-15-2022, 07:10 PM
Last Post: menator01
  [Tkinter] The Text in the Label widget Tkinter cuts off the Long text in the view malmustafa 4 5,085 Jun-26-2022, 06:26 PM
Last Post: menator01
  tkinter change the text of the checkbox zazas321 1 3,902 Sep-17-2021, 06:19 AM
Last Post: zazas321
  Updating button text based upon different variable values knoxvilles_joker 0 2,265 Apr-18-2021, 04:13 AM
Last Post: knoxvilles_joker
  tkinter text widget word wrap position chrisdb 6 7,650 Mar-18-2021, 03:55 PM
Last Post: chrisdb
  [Tkinter] tkinter.Menu – How to make text-variable? Sir 3 5,696 Mar-10-2021, 04:21 PM
Last Post: Sir
Photo Tkinter TEXT background image _ShevaKadu 5 7,865 Nov-02-2020, 10:34 AM
Last Post: joe_momma
  tkinter | Button color text on Click Maryan 2 3,431 Oct-09-2020, 08:56 PM
Last Post: Maryan
  [Tkinter] Text Upload LearningLittlebyLittle 0 2,074 Sep-04-2020, 07:55 PM
Last Post: LearningLittlebyLittle
  [Tkinter] updating tkinter chart from within function mikisDW 1 1,966 Jul-02-2020, 03:33 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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