<< Chapter < Page Chapter >> Page >
Listing 3 . Blank lines and whitespace.
a = 3 # spaces and commentb = 4 # tab and commentc = (a # continue on next line + b)# a blank line follows print(c)# the output is 7

Indentation

In every other programming environment that I have worked with in the past, indentation is used strictly for cosmetic or readability purposes.

However, indentation is not used strictly for cosmetic or readability purposes in Python. It is such an important topic in Python that I haveseparated it into a major section in this module.

Indentation is used to determine grouping of statements

Unlike most other programming environments, physical indentation is used in Python to determine the grouping of statements.

A blessing and a curse

This can be both a blessing and a curse. The blessing is that it forces you to use proper indentation, which usually leads to more readable code.

The curse is that if you don't use proper indentation, your script probably won't behave properly.

No safety nets

There are few if any safety nets in Python (such as the matching curly brackets used in C, C++, and Java) to protect you from indentation errors.

To make matters worse, such errors often turn up as logical errors (meaning that the script simply doesn't work correctly) rather than interpreter errors (meaning that the interpreter will tell you about the error) .

An example of correct indentation

Although I haven't introduced you to the if statement yet, you probably have a fairly good idea what it is used for. I am going to use it to illustrate theproper indentation of a group of statements with the script in Listing 4 .

Description of an "if" statement:

An if statement means that if some expression evaluates to true , the program will do something specific. Otherwise, the script won't do that specificthing.

Don't be too concerned if the logic of the script in Listing 4 escapes you at this point in time. I will explain the use of the if statement in detail in a futuremodule. The important thing here is to understand the grouping of statements.

Listing 4 . An example of correct indentation.
A = 3 B = 4if B>A: print(A) # begin groupprint(B) print(A + B) # end groupA = 6 # not part of above group print(A)#============================================================ #The output, which is not part of the script, is shown below.3 47 6

Compare A with B and take appropriate action

The script in Listing 4 compares the value of the variable A with the value of the variable B to determine if the value of B is greater than the value of A (if B>A:) .

If the value of B is greater than the value of A (which it is in this case) , the three indented print statements are executed. Otherwise, that group of threestatements is bypassed.

A compound statement

The three statements shown with indentation are either all executed, or they are all bypassed. Hence, they behave as a group.

A group of statements like this is sometimes referred to as a compound statement (a statement made up of two or more individual statements) .

Group behavior

When the three indented statements are executed as a group, the values 3, 4, and 7 are printed on consecutive output lines by the three print statements in the groupof statements, as shown in Figure 2 .

Questions & Answers

calculate molarity of NaOH solution when 25.0ml of NaOH titrated with 27.2ml of 0.2m H2SO4
Gasin Reply
what's Thermochemistry
rhoda Reply
the study of the heat energy which is associated with chemical reactions
Kaddija
How was CH4 and o2 was able to produce (Co2)and (H2o
Edafe Reply
explain please
Victory
First twenty elements with their valences
Martine Reply
what is chemistry
asue Reply
what is atom
asue
what is the best way to define periodic table for jamb
Damilola Reply
what is the change of matter from one state to another
Elijah Reply
what is isolation of organic compounds
IKyernum Reply
what is atomic radius
ThankGod Reply
Read Chapter 6, section 5
Dr
Read Chapter 6, section 5
Kareem
Atomic radius is the radius of the atom and is also called the orbital radius
Kareem
atomic radius is the distance between the nucleus of an atom and its valence shell
Amos
Read Chapter 6, section 5
paulino
Bohr's model of the theory atom
Ayom Reply
is there a question?
Dr
when a gas is compressed why it becomes hot?
ATOMIC
It has no oxygen then
Goldyei
read the chapter on thermochemistry...the sections on "PV" work and the First Law of Thermodynamics should help..
Dr
Which element react with water
Mukthar Reply
Mgo
Ibeh
an increase in the pressure of a gas results in the decrease of its
Valentina Reply
definition of the periodic table
Cosmos Reply
What is the lkenes
Da Reply
what were atoms composed of?
Moses Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Itse 1359 introduction to scripting languages: python. OpenStax CNX. Jan 22, 2016 Download for free at https://legacy.cnx.org/content/col11713/1.32
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?

Ask