* [Comm] tkinter
@ 2002-10-08 9:54 Yuriy Gomenyuk
2002-10-08 11:26 ` aen
0 siblings, 1 reply; 3+ messages in thread
From: Yuriy Gomenyuk @ 2002-10-08 9:54 UTC (permalink / raw)
To: ALT
Здравствуйте,
Установил с Сизифа python22 и tkinter22,
Набрал с книги простой пример (вычисление площади круга), запускаю файл - появляется только пустой серый квадратик с заголовком.
Никаких полей для ввода, кнопок...
в чём может быть ошибка?
текст примера:
******
#!/usr/bin/env python
from Tkinter import *
import math
def Square(radius):
return math.pi * radius**2
def calculate_square():
radius = float(radius_entry.get())
try:
square = "%11.3f" % Square(radius)
except:
square = "?"
square_label.configure(text=square)
root = Tk()
root.title("Площадь круга")
frame = Frame(root)
radius_entry = Entry(frame, width=10)
radius_entry.grid(row=0, column=0)
square_label = Label(frame, text="?")
square_label.grid(row=0, column=1)
eval_button = Button(frame, text="Вычислить", width=10,
command=calculate_square)
eval_button.grid(row=1, column=0)
exit_button = Button(frame, text="Выход", width=10,
command=root.destroy)
exit_button.grid(row=1, column=1)
root.mainloop()
******
Или что набрать, чтобы проверить, что ktinter работает нормально?
--
С уважением,
Юрий Гоменюк.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Comm] tkinter
2002-10-08 9:54 [Comm] tkinter Yuriy Gomenyuk
@ 2002-10-08 11:26 ` aen
2002-10-08 10:29 ` Yuriy Gomenyuk
0 siblings, 1 reply; 3+ messages in thread
From: aen @ 2002-10-08 11:26 UTC (permalink / raw)
To: community
Yuriy Gomenyuk wrote:
>Здравствуйте,
>
>Установил с Сизифа python22 и tkinter22,
>
Пожалуйста, в sisyphus@
Rgrds, AEN
>
>Набрал с книги простой пример (вычисление площади круга), запускаю файл - появляется только пустой серый квадратик с заголовком.
>Никаких полей для ввода, кнопок...
>
>
>в чём может быть ошибка?
>
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Comm] tkinter
2002-10-08 11:26 ` aen
@ 2002-10-08 10:29 ` Yuriy Gomenyuk
0 siblings, 0 replies; 3+ messages in thread
From: Yuriy Gomenyuk @ 2002-10-08 10:29 UTC (permalink / raw)
To: community
On Tue, 08 Oct 2002 15:26:12 +0400
aen <aen@altlinux.ru> wrote:
> >Установил с Сизифа python22 и tkinter22,
> >
> Пожалуйста, в sisyphus@
Нет нет, вроде всё работает.
Пример глючный (или руки - набрал его не так... попробовал другой, всё ок)
Извиняюсь за беспокойство.
--
С уважением,
Юрий Гоменюк.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2002-10-08 11:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-08 9:54 [Comm] tkinter Yuriy Gomenyuk
2002-10-08 11:26 ` aen
2002-10-08 10:29 ` Yuriy Gomenyuk
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git