473,795 Members | 2,968 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Book Recomendations

I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.

Thanks

Ira
Mar 2 '08 #1
11 1327
On Mar 1, 7:56*pm, Ira Solomon <isolo...@solom onltd.comwrote:
I am an experienced programmer (40 years). *I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. *I would appreciate recommendations on those as well.

Thanks

Ira
I would recommend checking out the official Python tutorial -
http://docs.python.org/tut/ - it has some valuable information, and is
always kept up to date.

I'm haven't looked at any Python books (yet), so I can't provide any
recommendations there.

HTH.
Mar 2 '08 #2
Tro
On Saturday 01 March 2008, Ira Solomon wrote:
I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.
The official tutorial is required reading. After that, Dive Into Python
(http://diveintopython.org/).

Cheers,
Tro
Mar 2 '08 #3
Ira Solomon wrote:
I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.
Python In A Nutshell:
http://www.oreilly.com/catalog/pythonian2/

Here's a previous discussion of books for newbies, but I gave my
recommendations for other experienced programmers; be forwarned that I'm
not quite as experienced as you appear to be. :)
http://www.nabble.com/newbie-in-pyth...star15617714-1
Mar 2 '08 #4
On Mar 2, 6:56 am, Ira Solomon <isolo...@solom onltd.comwrote:
I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.

Thanks

Ira

I have found that 'Dive into Python' is a good book for people who
have experience with other languages. It's available free here:
http://www.diveintopython.org/

regards,
Subeen
http://love-python.blogspot.com/
Mar 2 '08 #5
On Mar 2, 12:56 am, Ira Solomon <isolo...@solom onltd.comwrote:
I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.

Thanks

Ira
Hi Ira,
Get Python installed on your machine - I would suggest the latest 2.5
release then either start up idle (or pythonwin if you have that on
windows), or just type python at a command line prompt to get you to
pythons shell.

The Python shell together with the official tutorial is a great way to
learn Python.

If you start to flag, then their are a few videos of pre-teen kids
learning Python here:
http://showmedo.com/videos/python?to...er_programming
If they can learn it .... ;-)

Welcome to Python, have fun!

- Paddy.
Mar 2 '08 #6
js
I wonder why nobody mension Python Cookbook yet.
http://www.oreilly.com/catalog/pythoncook2/
Web version: http://aspn.activestate.com/ASPN/Cookbook/Python/

and Python Standard Library
http://www.oreilly.com/catalog/pythonsl/
http://effbot.org/zone/librarybook-index.htm

On Sun, Mar 2, 2008 at 4:09 PM, Paddy <pa*******@goog lemail.comwrote :
On Mar 2, 12:56 am, Ira Solomon <isolo...@solom onltd.comwrote:
I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.
>
Thanks
>
Ira

Hi Ira,
Get Python installed on your machine - I would suggest the latest 2.5
release then either start up idle (or pythonwin if you have that on
windows), or just type python at a command line prompt to get you to
pythons shell.

The Python shell together with the official tutorial is a great way to
learn Python.

If you start to flag, then their are a few videos of pre-teen kids
learning Python here:
http://showmedo.com/videos/python?to...er_programming
If they can learn it .... ;-)

Welcome to Python, have fun!

- Paddy.
--
http://mail.python.org/mailman/listinfo/python-list
Mar 2 '08 #7
On 2008-03-02, Jeff Schwab <je**@schwabcen ter.comwrote:
Python In A Nutshell:
http://www.oreilly.com/catalog/pythonian2/
Another vote for the Nutshell book, which I find a very useful and practical
book.

I never found the "Dive in" book useful.

Dave Cook
Mar 2 '08 #8

On 2 mar 2008, at 01.56, Ira Solomon wrote:
I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.

Thanks

Ira
--
http://mail.python.org/mailman/listinfo/python-list
I would recommend "Programmin g Python", by Mark Lutz, from O'Reillys
------------------------------------------------------
"Home is not where you are born, but where your heart finds peace" -
Tommy Nordgren, "The dying old crone"
to************@ comhem.se
Mar 2 '08 #9
Ira Solomon wrote:
I am an experienced programmer (40 years). I've done Algol (if you've
heard of that you must be old too), PL/1, VB,VBA, a little C, and a
few other odd languages (e.g. Taskmate).
I'm interested in learning Python and have downloaded a slew of books.
Too many.
I'd like a recommendation as to which books are considered to be the
cream of the crop.
I know there are tutorials on the web, but, again, I don't know the
quality. I would appreciate recommendations on those as well.

Thanks

Ira
I started off with Fortran 6X so I have been in the business about as long.
Do just about everything now in Python.

I liked Learning Python
Ken D.
Mar 2 '08 #10

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

Similar topics

0
1494
by: Brian | last post by:
Thanks for your time! I've been programming in asp.net/vb.net for 1.5 years. I'm currently in the job market. I have to take a .net test at a potential employer. I'd like to try to prepare. I'm not sure what's going to be on the test. Will most likely inlcude ado.net and asp.net at least. Can you make some recomendations regarding texts to study? If you had to have two texts covering .net, what would they be? TIA
5
1496
by: Robert Schuldenfrei | last post by:
Dear NG, I have not heard from anyone about a good book that deals with the concurrency issue in SQL Server using C#. I have PROMISED Nick I would not use record locking and I have used an old row / new row approach. (see next paragraph for my reply to Nick) I would like to use Timestamps and Transactions to produce an iron-clad and efficient application in a multi-user environment. Can anyone recommend such a book? OK Nick, I...
2
1017
by: SamMan | last post by:
I'm looking for recommendations on good books for VB .NET. I program in Java, and have a little experience in VB 6 (while in school 3 years ago). Beginning to intermediate books is what I'm looking at, based on the amount of time I have not worked in VB. I have complied a list of candidates based on consumer reviews from Amazon & Barnes and Noble, but just wanted to get some suggestions here that I could cross reference. Thanks.
4
1222
by: john conwell | last post by:
I'm a fairly seasoned vet with .net 1.1, and want a hardcore, indepth review of the new changes in 2.0, mostly covering the core namespaces and the System.Windows.Forms namespace. I dont really care about ASP.Net. Most of the books on 2.0 take it from the point of a beginner, which is a waste of time and money for me. any good book recomendations?
11
1934
by: www.douglassdavis.com | last post by:
I'm looking for advice here, and I would really appreciate it if you could help. Is there a VB 2005 book that you like and would recommend (and why)? Would you consider it good for beginners to programming, intermediate, or advanced level?
0
1896
by: jorge_martelanz | last post by:
I would like to receive experiences/ideas/recomendations/etc. from the community about commercial tools available to tune bufferpools in DB2 for z/OS I am aware of: - BPA4DB2 by ESAI - Buffer Pool Analyzer for z/OS by IBM - Buffer Pool Tool by Responsive systems - Pool advisor for DB2 by BMC Any experience on these tools? Pros/cons? Any other you know/use? Thanks in advance
1
1252
by: boris | last post by:
can someone recommend me a book on c++ game programming.I am keenly intrested in coding games but a beginner in c++ so plz recommend accordingly.
263
9405
by: Malcolm McLean | last post by:
The webpages for my new book are now up and running. The book, Basic Algorithms, describes many of the fundamental algorithms used in practical programming, with a bias towards graphics. It includes mathematical routines from the basics up, including floating point arithmetic, compression techniques, including the GIF and JPEG file formats, hashing, red black trees, 3D and 3D graphics, colour spaces, machine learning with neural...
1
3591
by: jrw133 | last post by:
i got this program the other day and ive just started it and i am getting some errors that i cant figure out. requirements: 1)create a clas called Book. a Book has three data members: m_title, m_id and m_flag to tell whether the book is in or checked out. 2)Write a constructor for Book. write a constructor that takes 3 parameters: Book(char * title, int id, bool flag) and initializes the 3 data members accordingly. in addition print out a...
0
9672
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10215
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
10165
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
10001
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7541
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
6783
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
5437
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
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3727
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.