table (ascii text) lin ayout recognition

James Stroud jstroud at mbi.ucla.edu
Wed Sep 13 05:14:05 EDT 2006


James Stroud wrote:
> indices = [t for t in zip(indices[::2],indices[1::2])]

(Artefact of cut-and-paste.)

Make that:

indices = zip(indices[::2],indices[1::2])



James



More information about the Python-list mailing list