tkinter, overwrite Label-text?

Marc 'BlackJack' Rintsch bj_666 at gmx.net
Thu Apr 10 12:03:39 EDT 2008


On Thu, 10 Apr 2008 07:37:08 -0700, skanemupp wrote:

> i know how to do this already. the problem is i want the text to stay
> in the windowa nd not start overwriting "Answer:".

Then don't use `place()` but let Tkinter handle the layout with the pack
and/or grid layout manager.  GUIs with `place()` are a bad idea because
the GUI may look odd or is even unusable on other peoples computers with
other screen resolutions, fonts, and font sizes.

Ciao,
	Marc 'BlackJack' Rintsch



More information about the Python-list mailing list