Alexnb wrote: > well okay, so what can I do? > > > Firstly, stop top posting. Replies to a thread "flow" better if bottom posted.
Secondly, it sounds like you want to build a list of the results from
your entry.get() calls.
Try this:
self.wordList = []
def getWords(self):
for entry in self.listBuffer:
self.wordList.append(entry.get())
print self.wordList
--
http://mail.python.org/mailman/listinfo/python-list
