Conditionals and Loops

Now that we understand the basic data types, we can begin to study the fundamental programming constructs that all programs will use. The two most important of these are conditionals and loops. Almost every script we write will require one or both of these.

Code Blocks

Both loops and conditionals, and many other constructs we will encountered later, work with code blocks. A code block is a group of statements that function logically as a single statement.

Most of the time, a block is introduced by a colon (:) following a declaration or expression. In Python these blocks are indicated by the indentation level. You may indent each block by however many spaces you wish (3 or 4 is usually recommended), but each block level must be indented by exactly the same number. Do not use tabs. The block is terminated by returning to the previous indentation level; there are no special characters or statements to delineate a block.

Many editors, including Spyder, will automatically indent the next statement to the same level as the previous one. You escape to an outer level with the backspace or some other key. Spyder also provides Indent and Unindent options in its Edit menu. These are extremely convenient for Python since you need only select lines, then click indent or unindent to create or move a code block level.

Examples

if x==20:
    x=99
    if (x>=30):
        for i in range(x):
            j=i+x
print(j)

for i in range(1,101,10):
    x=float(i)**2
    print(i,x)
z=30.
Previous
Next