re beginner

bearophileHUGS at lycos.com bearophileHUGS at lycos.com
Sun Jun 4 17:02:05 EDT 2006


> strings = islice(data2, 0, len(data), 2)
> numbers = islice(data2, 1, len(data), 2)

This probably has to be:

strings = islice(data2, 0, len(data2), 2)
numbers = islice(data2, 1, len(data2), 2)

Sorry,
bearophile




More information about the Python-list mailing list