WILEY

KNOWLEDGE FOR GENERATIONS

WILEY - KNOWLEDGE FOR GENERATIONS

United States Change Location

cart.gif CART |  MY ACCOUNT |  CONTACT US |  HELP    
Cover image for product 0764596543
Beginning Python
US $34.99 Add to Cart

This price is valid for United States. Change location to view local pricing and availability.

Other Available Formats: Adobe E-Book
  • Description
  • Table of Contents
  • Author Information
  • Errata
  • Download

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
6 Typo
python

should be:
Python
07/01/07
24 Error in Code/Text
The errata should be as follows:

"Therefore, the numbers 0 to 20 in decimal...."
if you add the number 14 in the sequence then this sentence will be true. So the number sequence for 0 to 20 in hex should be the following:

0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,10,11,12,13,14

and not:

0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,10,11,12,13
06/26/2006
31 Error in Code
Highlighted code, middle of page:
>>> print a[len(a) - 1]
3

Should read:
>>> print a[len(a) - 1]
third
8/24/05
61 Error in Code/Text
Page 61, first printing:

At the bottom, in "Try It Out", the text sentence should end "ch5.py".

The snippet following, "def in_fridge:" should be part of the code example below it.
09/08/2006
315, 317, 321 Error in Code
... = MIMEImage(open(filename).read(), ...

Should be:
... = MIMEImage(file(filename, "rb").read() ...
09/18/07