3 Icons Used in This Book
3 Icons Used in This Book
Tips are nice because they help you save time or perform some task without a
lot of extra work. The tips in this book are time-saving techniques or pointers
to resources that you should try in order to get the maximum benefit from
Python.
I don’t want to sound like an angry parent or some kind of maniac, but you
should avoid doing anything marked with a Warning icon. Otherwise, you
could find that your program only serves to confuse users, who will then
refuse to work with it.
Whenever you see this icon, think advanced tip or technique. You might find
these tidbits of useful information just too boring for words, or they could
contain the solution you need to get a program running. Skip these bits of
information whenever you like.
If you don’t get anything else out of a particular chapter or section, remember
the material marked by this icon. This text usually contains an essential pro-
cess or a bit of information that you must know to write Python programs
successfully.
✓ Cheat sheet: You remember using crib notes in school to make a better
mark on a test, don’t you? You do? Well, a cheat sheet is sort of like that.
It provides you with some special notes about tasks that you can do with
Python that not every other developer knows. You can find the cheat
sheet for this book at http://www.dummies.com/cheatsheet/beg
inningprogrammingwithpython. It contains really neat information
like the top ten mistakes developers make when working with Python and
some of the Python syntax that gives most developers problems.
4 Beginning Programming with Python For Dummies
If you’re a novice who’s in an absolute rush to get going with Python as quickly
as possible, you could skip to Chapter 2 with the understanding that you may
find some topics a bit confusing later. Skipping to Chapter 3 is possible if you
already have Python installed, but be sure to at least skim Chapter 2 so that
you know what assumptions were made when writing this book.
Readers who have some exposure to Python can save time by moving directly
to Chapter 5. You can always go back to earlier chapters as necessary when
you have questions. However, it’s important that you understand how each
example works before moving to the next one. Every example has important
lessons for you, and you could miss vital content if you start skipping too
much information.
Part I
Getting Started with Python
.
In this part . . .
✓ Discover what programming is all about and why you need
Python to do it.
✓ Get your own copy of Python and install it on your system.
✓ Work with the interactive environment that Python
provides.
✓ Create your first application using Python.
✓ Understand the benefits of adding comments to your
application.