Getting Started With Python Programming

Revision as of 14:14, 6 June 2010 by Joml88 (talk | contribs)

This guide takes you through the process of getting started with programming using the Python language. The sections flow from one to the next so it's recommended to read through this document linearly.

Installing Python

1. Download the installer:

2. Run the installer. 3. Click next for every option in the setup wizard (i.e. use the defaults).

Using the Idle Command Line

The Python installation comes with an easy-to-use text editor called Idle. You should start by playing around with this. You should be able to find Idle wherever Python was installed. On Mac this should be in the Applications folder while on Windows it should be accessible from the Start menu in a folder named Python or something close to that.

When you first open Idle, you'll see the command line:

Idle1.png

The command line is very useful for quick math and short sequences of commands:

Idle2.png

As you might notice from the picture, ** is the exponentiation operator. There's also an example of a for loop. Take some time to play around with the Python command line. You'll want to go through a more extensive introduction to programming to learn the full extent of what you can do with Python, but you can still do some pretty nifty stuff by just playing around.

The Idle Text Editor and Your First Python Program

For most programming needs, you'll want to edit your program in a separate document and then run it. In the file menu click on New Window which should give you a blank document with the title "Untitled". To get acquainted with the text editor, let's write our first Python program! We'll write a program to solve the | first Euler Project problem which asks:

Find the sum of all the multiples of 3 or 5 below 1000.

To do this, we first want to sum up all of the multiples of 3 less below 1000. We can do this with the following code:

Idle3.png

The first step is to define two variables, total and mult3, which we set to 0. Total is what will eventually be the answer while mult3 is going to be what we use to keep track of the multiples of 3. The next step is that we create a while loop. A while loop has two components:

  • The first is the condition that it checks every step. In this case we check to see that mult3 is less than 1000. Thus, we keep iterating over this loop until mult3 is not less than 1000 anymore.
  • The second component is the code in the loop that we execute. In this case we add mult3 to the total and then increment mult3 to be the next multiple of 3.

After the while loop we print out our total. Now that we've written this code, we probably want to run it and test it out. We can do so by going to the Run menu and hitting Run Module (shortcut F5). The program should execute and print out the answer to the command line.

At this point, you should know enough to finish off the program. We have yet to account for the multiples of 5 and any double counting that may have occurred. Try finishing this up on your own. The answer you should get is 233168 so you can check your work.

One thing you may want to note is that it can be tedious to write statements such as:

total = total + mult3.

Python has a shorthand for this which you can use:

total += mult3.

Try it out for yourself!