would it be possible in any way to do a text animation in Tkinter or Python in general? (Although the program is based in Tkinter)
For example, maybe the characters of the text appearing one after another kind of like you are typing it very fast. Is there any way to do this?
Thanks so much.
Example - display current time on label.
after()
runsupdate_time
after 1s andupdate_time
usesafter()
to runs itself again after 1s. This wayupdate_time
is called many times and it can change label many times.