{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Repeating Actions with loops\n", "\n", "
\n", "\n", "
\n", "
\n", "

Learning Objectives

\n", "
\n", "\n", "
\n", "\n", "In the last lesson, we wrote some code that plots some values of interest from our first inflammation dataset, and reveals some suspicious features in it, such as from `inflammation-01.csv`\n", "\n", "However, we have a dozen data sets right now, though, and more on the way. We want to create plots for all of our data sets with a single statement. To do that, we’ll have to teach the computer how to repeat things.\n", "\n", "An example task that we might want to repeat is printing each character in a word on a line of its own. One way to do this would be to use a series of print statements:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "from __future__ import division, print_function\n", "\n", "word = 'lead'\n", "print(word[0])\n", "print(word[1])\n", "print(word[2])\n", "print(word[3])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is a bad approach for two reasons:\n", "\n", "* It doesn’t scale: if we want to print the characters in a string that’s hundreds of letters long, we’d be better off just typing them in.\n", "\n", "* It’s fragile: if we give it a longer string, it only prints part of the data, and if we give it a shorter one, it produces an error because we’re asking for characters that don’t exist.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "word = 'tin'\n", "print(word[0])\n", "print(word[1])\n", "print(word[2])\n", "print(word[3])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here's a better approach" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "word = 'oxygen'\n", "for char in word:\n", " print(char)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The improved version uses a for loop to repeat an operation—in this case, printing—once for each thing in a collection. The general form of a loop is:\n", "\n", "```python\n", "for variable in collection:\n", " do things with variable\n", "```\n", "or\n", "\n", "```python\n", "for page in book:\n", " read(page)\n", "````" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can call the loop variable anything we like, but there must be a colon at the end of the line starting the loop, and we must indent anything we want to run inside the loop. Unlike many other languages, there is no command to end a loop (e.g. end for); what is indented after the for statement belongs to the loop.\n", "\n", "We can use for loops to count things by increasing variables:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "length = 0\n", "for vowel in 'aeiou':\n", " length = length + 1\n", "print('There are', length, 'vowels')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "It’s worth tracing the execution of this little program step by step. Since there are five characters in `'aeiou'`, the statement on line 3 will be executed five times. The first time around, `length` is zero (the value assigned to it on line 1) and `vowel` is `'a'`. The statement adds 1 to the old value of `length`, producing 1, and updates `length` to refer to that new value. The next time around, `vowel` is `'e'` and `length` is 1, so length is updated to be 2. After three more updates, `length` is 5; since there is nothing left in `'aeiou'` for Python to process, the loop finishes and the `print` statement on line 4 tells us our final answer.\n", "\n", "Note that a loop variable is just a variable that’s being used to record progress in a loop. It still exists after the loop is over, and we can re-use variables previously defined as loop variables as well:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "letter = 'z'\n", "for letter in 'abc':\n", " print(letter)\n", "print('after the loop, letter is', letter)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note also that finding the length of a string is such a common operation that Python actually has a built-in function to do it called `len`:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "print(len('aeiou'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`len` is much faster than any function we could write ourselves, and much easier to read than a two-line loop; it will also give us the length of many other things that we haven’t met yet, so we should always use it when we can.\n", "\n", "
\n", "
\n", "

Use other peoples code

\n", "
\n", "
\n", "Its a safe bet they are smarter than you.\n", "
" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "
\n", "
\n", "

1 to N

\n", "
\n", "
\n", "Python has a built-in function called `range` that creates a sequence of numbers. Range can accept 1-3 parameters. If one parameter is input, range creates an array of that length, starting at zero and incrementing by 1. If 2 parameters are input, range starts at the first and ends at the second, incrementing by one. If range is passed 3 parameters, it stars at the first one, ends at the second one, and increments by the third one. For example, `range(3)` produces the numbers 0, 1, 2, while `range(2, 5)` produces 2, 3, 4, and `range(3, 10, 3)` produces 3, 6, 9. Using `range`, write a loop that uses `range` to print the first 3 natural numbers.\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "
\n", "

Loops of Power!

\n", "
\n", "
\n", "Exponential is built into python and is signified with `**`. Write a loop which calculates `5**3` without using the `**` functionality.\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", "
\n", "

Reverse a string

\n", "
\n", "
\n", "Pick a string and reverse the order in which the characters appear (no palendromes).\n", "
" ] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python2", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.11" } }, "nbformat": 4, "nbformat_minor": 0 }