Форум сайта python.su
Всем добрый день. Как получить данные из поля 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()
Офлайн
python2.6:
Some_data = Text.get(0.0, "end")
Отредактировано (Июнь 9, 2009 11:02:29)
Офлайн