473,402 Members | 2,046 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

Off Topic: What is the good book to learn Python ?

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 administrator
http://www.linkwaves.com/main.asp
http://www.linkwaves.com

May 30 '07 #1
9 2642
I am new to Python but these 2 have been great resources, so far:

http://diveintopython.org/toc/index.html
http://docs.python.org/tut/
May 30 '07 #2
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 administratorhttp://www.linkwaves.com/main.asphttp://www.linkwaves.com
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).

Mike

May 30 '07 #3
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)".

May 30 '07 #4
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.
May 30 '07 #5
On 30 May 2007 11:25:22 -0700, Katie Tam <ka******@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 administrator
http://www.linkwaves.com/main.asp
http://www.linkwaves.com

--
http://mail.python.org/mailman/listinfo/python-list
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!
May 30 '07 #6
In article <ma***************************************@python. org>,
kaens <ap***************@gmail.comwrote:
>
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 (aa**@pythoncraft.com) <* http://www.pythoncraft.com/

"as long as we like the same operating system, things are cool." --piranha
May 31 '07 #7
Here are some excellent online books and tutorials to get started with:
http://www.python.org/doc/tut/ http://www.ibiblio.org/obp/thinkCSpy/
http://www.python.org/topics/learn/prog.html
http://www.python.org/topics/learn/non-prog.html
http://docs.python.org/lib/ http://diveintopython.org/
http://gnosis.cx/TPiP/ http://rox.sourceforge.net/basic_python.html
Here are some lists of books you can read online:
http://www.techbooksforfree.com/perlpython.shtml
http://en.wikibooks.org/wiki/Programming:Python
http://wiki.python.org/moin/PythonBooks
Some books:

Byte of Python
- online: http://www.byteofpython.info/files/1...python_120.pdf

Quick Tour of Python
- online:
http://stsdas.stsci.edu/pyraf/doc/py...quick_tour.pdf

Python in Nutshell
- online:
http://files.nixp.ru/books/programmi...20Nutshell.chm

Python Standard Library
- online: http://effbot.org/zone/librarybook-index.htm

Python tutorial
- online:
http://www.ensta.fr/~enstar/doc/pyth....4-PDF/tut.pdf
kaens wrote:
On 30 May 2007 11:25:22 -0700, Katie Tam <ka******@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 administrator
http://www.linkwaves.com/main.asp
http://www.linkwaves.com

--
http://mail.python.org/mailman/listinfo/python-list


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!
--
Shane Geiger
IT Director
National Council on Economic Education
sg*****@ncee.net | 402-438-8958 | http://www.ncee.net

Leading the Campaign for Economic and Financial Literacy
May 31 '07 #8
On 30 May 2007 17:28:39 -0700, Aahz <aa**@pythoncraft.comwrote:
In article <ma***************************************@python. org>,
kaens <ap***************@gmail.comwrote:

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 (aa**@pythoncraft.com) <* http://www.pythoncraft.com/

"as long as we like the same operating system, things are cool." --piranha
--
http://mail.python.org/mailman/listinfo/python-list
I haven't read it, maybe I will. I have just noticed that the "for
dummies" books tend to be a bit lacking.

That's just my opinion, of course.
May 31 '07 #9
In article <ma***************************************@python. org>,
kaens <ap***************@gmail.comwrote:
>On 30 May 2007 17:28:39 -0700, Aahz <aa**@pythoncraft.comwrote:
>In article <ma***************************************@python. org>,
kaens <ap***************@gmail.comwrote:
>>>
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 (aa**@pythoncraft.com) <* http://www.pythoncraft.com/

"as long as we like the same operating system, things are cool." --piranha
May 31 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: jodocus | last post by:
hi, I am new to python (but not to programming - have programmed in many other languages like C++/lisp/perl etc.) and I would like to buy a good book. The local bookstore has no books about...
4
by: anonymous | last post by:
i'm looking to start learning python. could someone recommend a good beginner's book for me? thanks. -------------------------------------------------------------------- For free web...
34
by: nobody | last post by:
This article is posted at the request of C.W. Yang who asked me to detail my opinion of Lisp, and for the benefit of people like him, who may find themselves intrigued by this language. The...
15
by: Randall Smith | last post by:
I've been programming in Python for about 2 years. I think it offers the best combination of simplicity and power of any language I have explored. As I write more and larger and complex programs,...
8
by: Lennart | last post by:
Hi everybody, Can someone advice me with the following issue: i want to learn python in my summer vacation (i try to ...:-) So, a good start is buying a good book. But wich? There are many ... ...
109
by: MSG | last post by:
Michel Bardiaux <michel.bardiaux@peaktime.be> wrote in message news:<G4idnfgZ0ZfCWbrdRVn2jQ@giganews.com>... > Mark Shelor wrote: > > > > > OK, Sidney, I am considering it. I can certainly...
6
by: Jamiil | last post by:
I am not a programmer by any means, but a dedicated aficionado. I have good understanding of Java and C/C++, and now I would like to learn javascript->ajax, but I don't know where to start. My HTML...
7
tharden3
by: tharden3 | last post by:
I've tried using several online tutorials, and most of them are great, but I'd like to have a good Python book on hand. Any suggestions? One of my weak spots mentally, is that it has been hard to...
38
by: FAQ server | last post by:
----------------------------------------------------------------------- FAQ Topic - What books cover EcmaScript? ----------------------------------------------------------------------- Most CLJ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.