Basic Python Syntax
I don't know if you've ever had an argument with someone about how to format functions and brackets in C/C++, but I have, and it went something like this:
Me:There is only one true way to write C++ function calls! You're an idiot if you don't do it this way:
void foo ( void )
{
/* Body of Foo */
}
My Ex-Friend:What the hell! That's unreadable!! I don't have a clue what you're doing there. Let me show you how it should be done:
void bar ( void ) {
/* Body of Bar */
}
Now, while I do feel strongly about my C/C++ formatting, as do many people, the creators of Python thought they could skirt the whole argument by attempting to allow only "THE ONE WAY":

Indentation?
Yep, and it's suprisingly elegant too(although the forthcoming example is nothing to write home about). I'm going to throw some code here, don't worry, we'll cover the specifics of these structures and more later on.
Now let's try the only example you'll ever need when attempting to teach a programming language: Hello World! Notice this is mostly comments, and I'm actually doing hello world in several different ways.
One of the ways not shown is using modules (although this file could also be a module). All python source is also a module (and modules can be gathered into packages for convenience and logical organization). We'll cover this more later. Suffice it to say you can execute hello world within the python interpreter by "importing" this python file ("hello.py").
You can download this Python file and try it yourself very quickly.