Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax an...
Re: Off Topic: What is the good book to learn Python ?
On May 30, 1:25 pm, Katie Tam <katie...@gmail .comwrote:
I am new to this filed and begin to learn this langague. Can you tell
me the good books to start with ?
>
Katie Tam
Network administratorht tp://www.linkwaves.c om/main.asphttp://www.linkwaves.c om
Depends on what you like. For easy stuff that's fun, I liked "Python
Programming for the Beginner" by Dawson as it let you create real
applications (mostly silly games).
"Beginning Python" by Hetland and the Python for Dummies book are both
good. Hetland's goes over everything you'd need to know and it has
some pretty cool, albeit complex examples in the last few chapters. If
you want good exercises to go with what you learned in the book, I'd
have to recommend "Python Programming: And Introduction to Computer
Science" by Zelle. It's the only book I've seen with good exercises
(or any exercises) at the end. Most don't have them.
Once you're through all that wonderfulness, I would recommend "Python
Programming 3rd Ed." by Lutz and/or "Core Python Programming" by Chun
for excellent references.
If you have any questions about any of these books let me know. I've
read all of them (except for Lutz's...only halfway done with it).
Re: Off Topic: What is the good book to learn Python ?
In my opinion, "Beginning Python: From Novice to Professional" is a
horrible book. I constantly have to consult "Learning Python(2nd ed.)
to clear up all the blunders in Beginning Python. In addition,
Learning Python(2nd ed) has exercises and Beginning Python doesn't.
So I would recommend "Learning Python(2nd ed)".
Re: Off Topic: What is the good book to learn Python ?
Katie Tam wrote:
I am new to this filed and begin to learn this langague. Can you tell
me the good books to start with ?
My favorite is the O'Reilly jython book.
This book is specifically about the python interpreter written in java
but I have always found it to be a well written explanation of python
basics in general.
If you're experienced with other programming languages, I'd recommend
python in a nutshell, or perhaps programming python. I personally just
skimmed through the online tutorial, and kept the library and api
references handy.
Orielly publishers almost always have excellent books on learning new
programming languages.
I would also recommend to stay away from any "for dummies" or "in x
(hours/days)" books. They can be decent introductory material, but
unless you are really really new to programming, you probably wouldn't
be getting enough information to justify the cost of the book (and a
lot of times they have a lot of bad practices in them)
Re: Off Topic: What is the good book to learn Python ?
In article <mailman.8439.1 180569067.32031 .python-list@python.org >,
kaens <apatheticagnos tic@gmail.comwr ote:
>
>I would also recommend to stay away from any "for dummies" or "in x
>(hours/days)" books. They can be decent introductory material, but
>unless you are really really new to programming, you probably wouldn't
>be getting enough information to justify the cost of the book (and a
>lot of times they have a lot of bad practices in them)
Maybe you should try actually reading _Python for Dummies_. ;-)
--
Aahz (aahz@pythoncra ft.com) <* http://www.pythoncraft.com/
"as long as we like the same operating system, things are cool." --piranha
>
If you're experienced with other programming languages, I'd recommend
python in a nutshell, or perhaps programming python. I personally just
skimmed through the online tutorial, and kept the library and api
references handy.
>
Orielly publishers almost always have excellent books on learning new
programming languages.
>
I would also recommend to stay away from any "for dummies" or "in x
(hours/days)" books. They can be decent introductory material, but
unless you are really really new to programming, you probably wouldn't
be getting enough information to justify the cost of the book (and a
lot of times they have a lot of bad practices in them)
>
Good luck!
>
Re: Off Topic: What is the good book to learn Python ?
On 30 May 2007 17:28:39 -0700, Aahz <aahz@pythoncra ft.comwrote:
In article <mailman.8439.1 180569067.32031 .python-list@python.org >,
kaens <apatheticagnos tic@gmail.comwr ote:
I would also recommend to stay away from any "for dummies" or "in x
(hours/days)" books. They can be decent introductory material, but
unless you are really really new to programming, you probably wouldn't
be getting enough information to justify the cost of the book (and a
lot of times they have a lot of bad practices in them)
>
Maybe you should try actually reading _Python for Dummies_. ;-)
--
Aahz (aahz@pythoncra ft.com) <* http://www.pythoncraft.com/
>
"as long as we like the same operating system, things are cool." --piranha
--
>>>
>>>I would also recommend to stay away from any "for dummies" or "in x
>>>(hours/days)" books. They can be decent introductory material, but
>>>unless you are really really new to programming, you probably wouldn't
>>>be getting enough information to justify the cost of the book (and a
>>>lot of times they have a lot of bad practices in them)
>>
>Maybe you should try actually reading _Python for Dummies_. ;-)
>
>I haven't read it, maybe I will. I have just noticed that the "for
>dummies" books tend to be a bit lacking.
Some are; some aren't. Like any broad and rapid-to-market series, there
are plenty of books that are pretty bad. But there are also plenty of
good Dummies books -- for example, _Personal Finance for Dummies_.
Speaking as the co-author of _Python for Dummies_, one of our goals was
to write a book that was both different from the other introductory
Python books and managed to match the quality of the best of them. I'm
not sure we succeeded in the second part, but I do think we did better
than the median, if only because between me and David Goodger (our tech
editor), we probably made fewer technical mistakes. ;-)
--
Aahz (aahz@pythoncra ft.com) <* http://www.pythoncraft.com/
"as long as we like the same operating system, things are cool." --piranha
Comment