Hi, Abrahamsen!
Would you mind tell me a way to eliminate the blank space in front of
"a" [int number] ?
Just as an example, the 'a' that is made = to '0', when printed, it
comes with a blank space after...
a, b = 0, 1
while b < 10:
print a, b,
a, b = a, b + 1
... do you think is the
7, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72,
73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
91, 92, 93, 94, 95, 96, 97, 98, 99, 100 '''
print 100
On 12/28/2010 05:31 PM, Hugo Arts wrote:
On Tue, Dec 28, 2010 at 2:54 PM, Enih Gile
Hi, all !
I've being strugling a lot trying to insert (just as exemple) a
quit-Button in a Tkinter class App with no success... What I get is the
clock runing ok, but, the App simply ignores the quit-Button... Why?
_*Remark*_:
I took this minimalist digital clock just to illustrate the "bad
d()
app = App()
app.master.title("Clock Time!")
app.mainloop()
Regards
Karim
On 01/12/2011 08:41 PM, Enih Gilead wrote:
Hi, all !
I've being strugling a lot trying to insert (just as exemple) a
quit-Button in a Tkinter class App with no success... What I get is
the clock runing ok, but, the