Difference between revisions of "Python:Iterative Structures"

From PrattWiki
Jump to navigation Jump to search
(Examples)
Line 43: Line 43:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
Note the use of <code>while True</code> here; this loop will run indefinitely on its own - the only thing that causes it to stop is if the <code>break</code> happens.
 
Note the use of <code>while True</code> here; this loop will run indefinitely on its own - the only thing that causes it to stop is if the <code>break</code> happens.
 +
 +
=== <code>for</code> loops ===
 +
The following codes will demonstrate different ways to scan through the entries of an iterable:
 +
==== Scanning through a list (or tuple, or array)====
 +
<syntaxhighlight lang=python>
 +
for k in [3, 1, 4, 1, 5]:
 +
    print(k)
 +
</syntaxhighlight>
 +
====  Scanning through a string====
 +
<syntaxhighlight lang=python>
 +
for k in 'Hello!':
 +
    print(k)
 +
</syntaxhighlight>
 +
====  Scanning through a range (or map) ====
 +
<syntaxhighlight lang=python>
 +
for k in range(3, 7):
 +
    print(k)
 +
</syntaxhighlight>
 +
==== Scanning through a dictionary====
 +
Assume the following code has run to create a dictionary <code>d</code>:
 +
<syntaxhighlight lang=python>
 +
d = {}
 +
d[4]='hello'
 +
d['Duke']=1.234
 +
d[(20,19)] = [20, 23]
 +
</syntaxhighlight>
 +
such that <code>d</code> is now:
 +
<syntaxhighlight lang=python>
 +
{4: 'hello', 'Duke': 1.234, (20, 19): [20, 23]}
 +
</syntaxhighlight>
 +
There are four ways to scan through it:
 +
<syntaxhighlight lang=python>
 +
for k in d:
 +
    print(k)
 +
 +
for k in d.values():
 +
    print(k)   
 +
 +
for k in d.items():
 +
    print(k)
 +
 +
for p, q in d.items():
 +
    print('p: {}, q: {}'.format(p, q))
 +
</syntaxhighlight>
  
 
== Indexing Items ==
 
== Indexing Items ==

Revision as of 15:26, 15 September 2019

Often in solving engineering problems you will want a program to run pieces of code several times with slightly - or possibly vastly - different parameters. The number of times to run the code may depend on some logical expression or on the number of columns in a particular matrix. For these, you will use iterative structures.

Introduction

There are two main iterative structures in Python: while loops and for loops. A while loops is controlled by some logical expression which is evaluated before deciding whether to run the code it controls. If the expression is true, the while loop will run the code it controls and once that code is done executing, it will reevaluate the logical expression. The loop will keep running until the logical expression is false at the time it gets evaluated.

A for loop on the other hand has a variable that scans through the entries in some iterable item (for example a list, tuple, array, range, map, string, dictionary). The variable takes on the 0 indexed value of the item and runs the code it controls; once that code is done, it will take the next item from the sequence. The for loop will run as many times as there are items in the sequence.

In both for and while loops, there are two commands that will change the behavior of the loop a bit. If you issue the continue command, the loop will immediately skip to its own end as if the code block were over. A while loop would then evaluate the logical expression again and re-run its code if the expression is still true; a for loop will grab the next item from the sequence if there is on. The other command that changes how a loop behaves is a break; if a loop runs a break command it will skip out of the loop immediately.

Examples

while loops

Imagine you want a user to enter a number between 0 and 10 inclusive; in cases where they get it wrong, you want them to try again. You might start your code by getting an input from the user:

x = input('Number in range [0, 10]: ')

If you run this code, you will realize that Python's input command renders whatever you give it as a string. To fix that, you can tell Python to re-cast it as a float:

x = float(input('Number in range [0, 10]: '))

This works, but it neither checks to see if the user actually entered a numerical type nor does it check if the value is in the right range. Because you will want the user to keep entering values until something valid is entered, you will use a while loop to evaluate the answer and get another value:

x = float(input('Number in range [0, 10]: '))
while x < 0 or x > 10:
    x = float(input('Incorrect value - number in range [0, 10]: '))

This now does exactly what you want it to do, as long as the user has given an input that can be rendered as a float. If the user enters a non-numerical character, Python will give an error. If you want to deal with that situation, you will need to check what the user gives as an input before trying to make it a float. This is complicated by the fact that Python does not currently have a great way to check if the contents of a string can represent a float. Given that, it might be easier to use Python's try structure and then catch and display any exceptions. Here's an example that takes advantage of try, continue, and break to first see if the string entered could be turned into a float and, if it can, if that float is in the proper range:

x = input('Number in range [0, 10]: ')
while 1:
    try:
        x = float(x)
    except Exception as oops:
        print(oops)
        print('"{}" contains invalid characters'.format(x))
        x = input('Number in range [0, 10]: ')
        continue

    if x < 0 or x > 10:
        x = float(input('Incorrect value - number in range [0, 10]: '))
    else:
        break

Note the use of while True here; this loop will run indefinitely on its own - the only thing that causes it to stop is if the break happens.

for loops

The following codes will demonstrate different ways to scan through the entries of an iterable:

Scanning through a list (or tuple, or array)

for k in [3, 1, 4, 1, 5]:
    print(k)

Scanning through a string

for k in 'Hello!':
    print(k)

Scanning through a range (or map)

for k in range(3, 7):
    print(k)

Scanning through a dictionary

Assume the following code has run to create a dictionary d:

d = {}
d[4]='hello'
d['Duke']=1.234
d[(20,19)] = [20, 23]

such that d is now:

{4: 'hello', 'Duke': 1.234, (20, 19): [20, 23]}

There are four ways to scan through it:

for k in d:
    print(k)

for k in d.values():
    print(k)    

for k in d.items():
    print(k)

for p, q in d.items():
    print('p: {}, q: {}'.format(p, q))

Indexing Items

While using a loop, you may want to access certain elements of matrices and vectors within that loop. To do this, you will need a variable that holds on to the index number you want to access. There are two fundamentally different ways to create this variable: using the loop scanning variable itself as in index it appropriate, or creating an external counter.

Scanner Variable

If you have a loop that is meant to go through a pre-determined number of iterations, and you have set up a loop counter to count the iteration you are on:

for K=1:12
    % Code
end

you can use the scanning variable as the indexing variable. For instance, to obtain twelve different values from a user, you can use the following code:

Temperatures = [];
for K=1:12
    Temperatures(K) = input('Enter a temperature: ');
end

and the fact that K takes on the values of 1, 2, 3, etc., will work as your index variable. The Temperatures variable will end up as a 1 x 12 matrix with the values the users gave you.

External Variable

Sometimes, you will not have an integer-based scanning variable - or you may not have a scanning variable at all (example: while loops). For those, you may have to start an external counter. For example, if you want to store temperature inputs so long as the temperatures entered are non-negative, you could write:

NumTemps = 0;
Temperatures = []; % starts off empty
TempInput = input('Enter a temperature (negative to stop): ');
while TempInput>=0
    NumTemps = NumTemps + 1;
    Temperatures(NumTemps) = TempInput;
    TempInput = input('Enter a temperature (negative to stop): ');
end

At the end of this code, NumTemps will be a value that indicates how many entries there are in Temperatures, and Temperatures will be a 1 x NumTemps matrix of temperature values.

Initializing Large Vectors

One of the dangers in MATLAB's ability to automatically resize a vector is the amount of time it actually takes to do that.

Iterative Resizing

Consider the following:

clear
tic
y0 = 0;
v0 = 5;
a  = -9.81;
NP = 10;
t = linspace(0, 5, NP)
for k=1:NP
   y(k) = y0 + v0*t(k) + 0.5*a*t(k).^2;
end
toc

This code takes, on average, 36 microseconds to run. If NP is increased to 100, the average time to complete goes up to about 150 microseconds. NP of 1000 increases the time to 2.25 ms. And NP of 100000 increases the time to over 10 s! The graph below shows, on a log scale, time to complete as a function of NP:

NoInitPlot.png

Clearly, this becomes a major problem as the number of points increases.

Initialized

Remarkably, adding a single line completely changes the timing of the program. The following program:

clear
tic
y0 = 0;
v0 = 5;
a  = -9.81;
NP = 10;
t = linspace(0, 5, NP)
y = t*0;     % here's the only thing that changed!!!
for k=1:NP
   y(k) = y0 + v0*t(k) + 0.5*a*t(k).^2;
end
toc

generates the following time vs. NP graph:

InitPlot.png

which indicates a reduction, by three orders of magnitude, of the run time. And all that was done was creating a vector y of the appropriate size before running the loop, rather than continuously changing the vector size inside the loop.

Vectorized

Of course, the fastest version of the code uses MATLAB's ability to vectorize:

clear
tic
y0 = 0;
v0 = 5;
a  = -9.81;
NP = 10;
t = linspace(0, 5, NP)
y = y0 + v0*t + 0.5*a*t.^2;
toc

which generates the following time vs. NP graph:

NoLoopPlot.png

Questions

Post your questions by editing the discussion page of this article. Edit the page, then scroll to the bottom and add a question by putting in the characters *{{Q}}, followed by your question and finally your signature (with four tildes, i.e. ~~~~). Using the {{Q}} will automatically put the page in the category of pages with questions - other editors hoping to help out can then go to that category page to see where the questions are. See the page for Template:Q for details and examples.

External Links

References