473,769 Members | 3,102 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Books I'd like to see

David Mertz
Functional Programming in Python
Using the Xoltar Toolkit

Steve Holden
Python Web Services

Alex Martelli
Metaprogramming in Python

Guido van Rossum
My secret addiction to comp.lang.pytho n
A biography

Tim Peters
The Python Philosophy

Eric S Raymond
Python for the Working Hacker

Gerson Kurz
Designing Obfuscated Languages
With Python Parser/Generators

Tim Peters and Doug Bagley
The Zen of Computer Programming

Bill Venners
Selected Interviews

--
..:[ dave benjamin (ramenboy) -:- www.ramenfest.com -:- www.3dex.com ]:.
: d r i n k i n g l i f e o u t o f t h e c o n t a i n e r :
Jul 18 '05 #1
15 1778
Book I'd hate to see:
Herbert Schildt
Python: The Complete Reference

- Kef

Jul 18 '05 #2
<rant?>
I'd like to see a good introduction to Python for brand new programmers
that starts with Python's object orientation (at least as the
assumption, if not explicitly dealing with objects at the beginning).

I've looked over every book on the market and the Net that is
introductory to Python and none of them emphasize Python's uniqueness
and power. It is not possible to rightly understand Python without
understanding that virtually everything except the keywords are
objects. This is the year 2003 and books are still introducing
Structured Programming paradigms and then re-teaching by introducing
Object Oriented later. This is Wrong! :-)

Guido's Tutorial probably comes the closest. He assumes objects under
the hood in his presentation of the material, rather than trying to
make Python fit into the old molds. If it had a full set of exercises
it would be a good starting text, perhaps needing some fleshing out in
areas.

Maybe one of the existing books out has exercises at the end of the
chapters; another shortcoming IMHO.
</rant>
Jul 18 '05 #3
I would like to see "wxPython Programming" from Grayson, John E.

His book on tkinter is pretty darn good, but I'm much more interested
in wxWindows. I find the need to look up the C++ wxWindows
documentation and do a translation to the Python equivalent really
gets in my way of learning how to use the widgets properly.

Nick

--
# sigmask || 0.2 || 20030107 || public domain || feed this to a python
print reduce(lambda x,y:x+chr(ord(y )-1),' Ojdl!Wbshjti!=o bwAcboefstobudi/psh?')
Jul 18 '05 #4
Nick Vargish wrote:
I would like to see "wxPython Programming" from Grayson, John E.

His book on tkinter is pretty darn good, but I'm much more interested
in wxWindows. I find the need to look up the C++ wxWindows
documentation and do a translation to the Python equivalent really
gets in my way of learning how to use the widgets properly.

Nick


i 2nd this

bryan

Jul 18 '05 #5
Scott Chapman <sc********@mis chko.com> wrote in message news:<ma******* *************** **************@ python.org>...
<rant?>
I'd like to see a good introduction to Python for brand new programmers
that starts with Python's object orientation (at least as the
assumption, if not explicitly dealing with objects at the beginning).

I've looked over every book on the market and the Net that is
introductory to Python and none of them emphasize Python's uniqueness
and power. It is not possible to rightly understand Python without
understanding that virtually everything except the keywords are
objects. This is the year 2003 and books are still introducing
Structured Programming paradigms and then re-teaching by introducing
Object Oriented later. This is Wrong! :-)

Guido's Tutorial probably comes the closest. He assumes objects under
the hood in his presentation of the material, rather than trying to
make Python fit into the old molds. If it had a full set of exercises
it would be a good starting text, perhaps needing some fleshing out in
areas.

Maybe one of the existing books out has exercises at the end of the
chapters; another shortcoming IMHO.
</rant>


But Python is designed in such a way that a lot of it can be taught
without talking about objects. Yes, you are right that in its heart
it is very strongly object oriented (maybe even more than Java or Ruby),
but NOT on the surface. This is on purpose and I think it is a good
thing (for teaching purposes and for other reasons too). I would welcome
a metaprogramming/advanced OOP book by the Martellibot, but this would NOT
be a book for beginners.
Actually I was confused by the tutorial that you liked so much, since
when I first read it I knew nothing about OOP. I don't think talking
immediately about OOP would be helpful for a total beginner. On the
other hand, if you already knew OOP from another language, then you
are an experienced enough programmer and you can learn Python from
the Nutshell, isn't it?

Michele Simionato
Jul 18 '05 #6
Michele Simionato wrote:
...
But Python is designed in such a way that a lot of it can be taught
without talking about objects. Yes, you are right that in its heart
it is very strongly object oriented (maybe even more than Java or Ruby),
I don't know about "more than Ruby" -- Ruby's pretty thoroughly OO, too.
I'd call it a wash.
but NOT on the surface. This is on purpose and I think it is a good
thing (for teaching purposes and for other reasons too). I would welcome
To teach people coming from other procedural languages, yes. To teach
total beginners, I dunno; Smalltalk (arguably even more OO than Ruby or
Python, as even 'if' is not a statement but a message sent to a boolean
object for example) was in part designed to teach children. I'm not sure
how I would go about starting out with OO, but it's presumably a respectable
theory. Are there books based on that theory for any language, btw?
a metaprogramming/advanced OOP book by the Martellibot, but this would NOT
be a book for beginners.
If it had "advanced" in the title it sure wouldn't:-).
Actually I was confused by the tutorial that you liked so much, since
when I first read it I knew nothing about OOP. I don't think talking
immediately about OOP would be helpful for a total beginner. On the
I don't think Guido's tutorial is oriented to total beginners at all.
other hand, if you already knew OOP from another language, then you
are an experienced enough programmer and you can learn Python from
the Nutshell, isn't it?


But the Nutshell only gets into OO _after_ it has covered functions, flow
control, etc; it doesn't _start_ from OO, which is the original poster's
request.
Alex

Jul 18 '05 #7
You forgot the following.

1. Wesley Chun ( or is it Alex Chun ?)

Core Python Programming

2. David Mertz

Text Processing in Python.

I would like to see a general book on
"Software development using Python", which will discuss
the practitioner's approach to developing software
using python, by one of the established methods.

May be this can be taken up as a joint project by
one of the python gurus say Alex or David, and one of those
Software Engineering/Methodology gurus like Martin Fowler
or Bruce Eckel.

Just my $0.02.

-Anand

Bryan <be*****@yahoo. com> wrote in message news:<yk_sb.144 769$275.445898@ attbi_s53>...
Nick Vargish wrote:
I would like to see "wxPython Programming" from Grayson, John E.

His book on tkinter is pretty darn good, but I'm much more interested
in wxWindows. I find the need to look up the C++ wxWindows
documentation and do a translation to the Python equivalent really
gets in my way of learning how to use the widgets properly.

Nick


i 2nd this

bryan

Jul 18 '05 #8
Oh, you were listing books that were *not* in
the market. I got it the other way round ;-)

Anyway, my argument for "Sofware development
in Python" holds.

regards

-Anand

Bryan <be*****@yahoo. com> wrote in message news:<yk_sb.144 769$275.445898@ attbi_s53>...
Nick Vargish wrote:
I would like to see "wxPython Programming" from Grayson, John E.

His book on tkinter is pretty darn good, but I'm much more interested
in wxWindows. I find the need to look up the C++ wxWindows
documentation and do a translation to the Python equivalent really
gets in my way of learning how to use the widgets properly.

Nick


i 2nd this

bryan

Jul 18 '05 #9
In article <TU************ *******@news2.t in.it>, Alex Martelli wrote:
Michele Simionato wrote:
...
But Python is designed in such a way that a lot of it can be taught
without talking about objects. Yes, you are right that in its heart
it is very strongly object oriented (maybe even more than Java or Ruby),


I don't know about "more than Ruby" -- Ruby's pretty thoroughly OO, too.
I'd call it a wash.


Ruby certainly claims to be more OO (and if Smalltalk is your definition of
OO, it's a logical conclusion). Of course, everyone has a different
definition of what OO really is. Including Alan Kay. =)
a metaprogramming/advanced OOP book by the Martellibot, but this would NOT
be a book for beginners.


If it had "advanced" in the title it sure wouldn't:-).


This reminds me of a book I purchased last year called "Macromedia Flash MX
ActionScripting : Advanced Training from the Source". Given that title,
wouldn't you expect advanced concepts in ActionScript to be covered? Think
again - it's advanced *training*. In other words, it's the training that's
advanced, not the subject matter. Needless to say, I felt pretty shafted. ;)
other hand, if you already knew OOP from another language, then you
are an experienced enough programmer and you can learn Python from
the Nutshell, isn't it?


But the Nutshell only gets into OO _after_ it has covered functions, flow
control, etc; it doesn't _start_ from OO, which is the original poster's
request.


Was this a conscious decision? If so, what were your motivations behind
procedural-first vs. objects-first?

--
..:[ dave benjamin (ramenboy) -:- www.ramenfest.com -:- www.3dex.com ]:.
: d r i n k i n g l i f e o u t o f t h e c o n t a i n e r :
Jul 18 '05 #10

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

Similar topics

6
2815
by: Howard Kaikow | last post by:
What's the best book to learn PHP? What's the best book for a PHP reference? My goal is presently limited to construction of a custom 404 page for my web site and PHP is the only scripting language my ISP allows us to use server side. -- http://www.standards.com/; See Howard Kaikow's web site.
8
1934
by: noid droid | last post by:
Hi. I posted yesterday asking if C# lived up to the hype. Thus far the feedback has been all positive. (Thanks.) Can anyone suggest GOOD books for learning C# and the Visual Studio .NET IDE? If there is a book that covers both, that would be great. Also, is it necessary for me to learn a lot about the .NET framework that wouldn't also be covered in one of the books? If I can find a book that'll get me up and running with the IDE...
8
1727
by: Earl | last post by:
I've been on a mission this past year to move from VB6 to .Net. I'm fortunate(!?) not to have the big catalog of some long-time VB developers, although I have some CE apps that have to be entirely rewritten in CF. A lot of what I develop has to be written for the PPc, so I knew I would be looking for information in .Net, ADO.Net, CF -- and SQL Server. So in the spirit that others might benefit from my journey, here are my observations....
23
2538
by: Carter Smith | last post by:
http://www.icarusindie.com/Literature/ebooks/ Rather than advocating wasting money on expensive books for beginners, here's my collection of ebooks that have been made freely available on-line by their authors. There are lots of them out there but this selection cuts out the junk. If you know of any other good books that are freely available please post a link to them here and I'll consider adding them to the site.
29
3507
by: Jhon smith | last post by:
Hi,all,I was just wondering if I am likly to have any problems trying to learn C from older books,I have some from the late 80`s,mid/late 90`s. I am using Dev-C++ on the pc windows platform,But I have noticed small differnces in the books such as,int main(),main(void),fprintf,and others,just wondering if these older books are still worth trying to learn from as Im on a very tight budget and can`t really afford any thing else,or are they...
6
2203
by: Francois | last post by:
Hi guys, I am a daily average user of C# but I think I need to masterize the language a little bit more to get full use of it and be able to do better programming. I find myself programming the same way I did years ago. I haev a basic understanding of OOP and do not need an introduction book for pple who comes from procedural langauges. I never wrote any program in any procedural languages anyway. Before programming in C#, I wrote...
6
2521
by: John | last post by:
I am looking for VB.Net books which provide a lot of exercises (preferrably with all the answers worked out on CD). In earlier reactions Ken Tucker and M.Posseth recommended a few books. Thanks for both of your reactions. Ken included the links, so it is clear which books he recommended (I will get them!) M.Posseth recommended "the complete MCSD self paced training kit" and "Programming Microsoft Visual Basic form Francesco Balena",...
2
1981
by: youpak2000 | last post by:
What you can't find in programing text books Professional software development needs more knowledge than language syntax, OOP, styles, etc. There are many things which people usually learn by working in industry. One important part of the development is good knowledge of tools such as compilers, linkers, and make file design. There are no in-dept discussion of these tools in C/C++ programming text books. I haven't
17
3879
by: Hypnotik | last post by:
Hello everyone. I'm working on a program which uses a class (Shelf) and a struct (Book). In the main program we declare an array (Library) which is of type shelf. The program takes in various info about books (author, title, isbn, etc) and then allows you to search for books starting with a certain letter, and in turn displays those books and the info on them. At this point I can enter the info, and display the info for 1 book. I'm confused...
2
1388
by: AJJ | last post by:
Hi. Just a quick question. I'm planning on learning VB 2008 when I finish my degree in a couple of months. I have some good books on VB 2005, will they be any good or are the changes too profound? The books are general VB and VB databases. Thanks for any help. AJJ...
0
9423
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10050
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9999
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8876
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7413
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5310
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3570
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.