Re: [Tutor] Python books

2012-11-10 Thread lzantal
Hi, On Nov 9, 2012, at 11:13 PM, wesley chun wes...@gmail.com wrote: there is no one single book that has all you're seeking, however you can probably find one or two that may suit your fancy in these Python reading lists that i made earlier this year: http://goo.gl/i4u0R note that the

Re: [Tutor] newb help reading lines from csv

2012-10-22 Thread LZAntal
- loop through a CSV file twice. Why does the second for loop not execute at all? The first one prints the rows of the file just fine. _ I believe csv module uses iterator so you need to run reader.seek(0) between the for loops Laszlo http://twitter.com/LZAntal

Re: [Tutor] question about gzip module

2012-01-05 Thread lzantal
Good morning, I learned it (and many other modules) from pymotw. Here is a direct link to the gzip week. http://www.doughellmann.com/PyMOTW/gzip/index.html#module-gzip lzantal On Jan 5, 2012, at 7:45 AM, daedae11 wrote: Is there anyone who can give me an example of how to use the gzip