Re: [Tutor] Printing in the same place

2011-08-17 Thread Alan Gauld
On 17/08/11 23:20, brandon w wrote: I guess I will have to find another way to create a digital clock in a tkinter window. The point about a GUI is that you display widgets that have text on them. It could be a Label, or a Button or a Text box or even a Canvas. Then to change the text you sim

Re: [Tutor] Printing in the same place

2011-08-17 Thread brandon w
On 08/17/2011 04:02 AM, Alan Gauld wrote: On 17/08/11 04:05, brandon w wrote: I am trying to print in the same place to make a clock in a tkinter window. I will loop the following code to update the time. This is not a tkinter program so its completely irrelevant to your stated aim. In tkinter

Re: [Tutor] Printing in the same place

2011-08-17 Thread Alan Gauld
On 17/08/11 09:02, Alan Gauld wrote: On 17/08/11 04:05, brandon w wrote: > I am trying to print in the same place to make a clock in a tkinter > window. I will loop the following code to update the time. This is not a tkinter program so its completely irrelevant to your stated aim. In tkinter how

Re: [Tutor] Printing in the same place

2011-08-17 Thread Alan Gauld
On 17/08/11 04:05, brandon w wrote: I am trying to print in the same place to make a clock in a tkinter window. I will loop the following code to update the time. This is not a tkinter program so its completely irrelevant to your stated aim. In tkinter how print works is of no importance. You w

Re: [Tutor] Printing in the same place

2011-08-17 Thread Peter Otten
brandon w wrote: > I am trying to print in the same place to make a clock in a tkinter > window. I will loop the following code to update the time. > > This seems to work but it is not printing in the same place: > > #!/usr/bin/python > #Python 2.6.6 > > import time > > for t in range(5): >