Getting Started With Python Programming

Revision as of 23:26, 18 July 2010 by Joml88 (talk | contribs) (Installing Python)

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. Find where the installer was downloaded and double click on it to run it.

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

Using the Python Shell

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 Python Shell:

Idle2-1.png

Note that the screenshots in this article are taken using IDLE on a Mac with the font increased. Thus IDLE may look a little bit different for you but should still function similarly. Another thing to note is that in the lower left hand corner of the Python Shell you can see that it says "Ln: 4 Col: 4". This is just telling you where in the document your cursor is. In this case it's on line 4 and over in column 4.

The Python Shell is very useful for quick math and short sequences of commands:

Idle2-2.2.png

Here we see a number of familiar operations: + for addition, - for subtraction, * for multiplication, and / for division. The last operation shown in the example, denoted by **, happens to be exponentiation. One neat feature to note about Python is that it can store arbitrarily large numbers (limited by the amount of memory your computer has). Trying some hefty exponentiation, we can see that we can compute with some pretty big numbers such as $2^{1000}$ as illustrated below.

Idle2-3.png

While Python can make for a pretty good calculator, it can do a whole lot more. One example is when dealing with strings as follows:

Idle2-4.png

Here we are concatenating the three strings "python", "is", and "cool" by using the + operator. Notice that previously we used + to add numbers but now with strings, Python concatenates them! You may also note that the output of the operation gives us a string with single quotes around it. In Python, you are able to use single quotes or double quotes to denote a string. You can use them interchangeably.

As a final example, we can even write code in the Python Shell that extends beyond a single line as shown below. We also see our first example of a $\verb=for=$ loop.

Idle2-5.png

Take some time to play around with the Python Shell. 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" as shown below:

Idle2-6.png

You'll need to save your file before running it, so you might as well save it now. Make sure that you name your file with a name that ends in .py so that you get proper syntax highlighting. Here we save ours as test.py:

Idle2-7.png

To get acquainted with the text editor, let's write our first Python program! Let's write a program to the following task:

Find the sum of all the positive multiples of 3 below 1000.

Intuitively, one would start with the smallest positive multiple of 3 and go up one multiple at a time keeping track of the sum stopping once he hits 1000. We can do this with the following code:

Idle2-8.png

This program basically works by incrementing $\verb=i=$ by 3 every time and adding it to the $\verb=total=$. The $\verb%+=%$ notation might be intimidating at first. However, the statement $\verb%i+=3%$ is just a shorthand for $\verb%i = i + 3%$.

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 Python Shell:

Idle2-9.png

Now that you've gotten started, you may want to take this program a step further and solve the first problem from the Project Euler website (which is a great source of programming problems).

What's Next?

Now that you've learned the very basics of getting Python going, there's a bunch of tutorials you can look at which are listed on the Python website. Go check them out!