Tkinter: Text.dump() method, and questions

Fredrik Lundh fredrik at pythonware.com
Wed Apr 11 04:24:55 EDT 2001


Andrew Kuchling wrote:
>     # Group the flat list into triples
>     L = []
>     for i in range(len(t), 3):
>         L.append( t[i:i+3] )

better make that range(0, len(t), 3), right?

> Some other questions:

no time right now (final PSL touchups).  if nobody else
steps in, I'll get back to them later.

Cheers /F





More information about the Python-list mailing list