Уведомления

Группа в Telegram: @pythonsu

#1 Июнь 5, 2009 20:09:52

ppiskun
От:
Зарегистрирован: 2009-06-05
Сообщения: 10
Репутация: +  0  -
Профиль   Отправить e-mail  

Python и Tkinter

Всем добрый день. Как получить данные из поля Text? Вот мой код - не работает. Что делать?

from Tkinter import *
def add_note():
note_entry.insert(note.END, note_e)
f = open('/home/ppiskun/note/notes.txt')
f.write("|", note_e)
f.close()
note = Tk()
note.title("Note list")
frame = Frame(note)
frame.pack()
note_entry = Text(frame)
note_entry.grid(row=1, column=0)
note_button = Button(frame, text="Add", width=10, command=add_note)
note_button.grid(row=2, column=0)
note.mainloop()



Офлайн

#2 Июнь 9, 2009 11:02:00

diam123
От:
Зарегистрирован: 2008-10-23
Сообщения: 105
Репутация: +  0  -
Профиль   Отправить e-mail  

Python и Tkinter

python2.6:

Some_data = Text.get(0.0, "end")



Отредактировано (Июнь 9, 2009 11:02:29)

Офлайн

Board footer

Модераторировать

Powered by DjangoBB

Lo-Fi Version