Columbus Python Workshop 1/Saturday lecture: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Catherinedevlin
(Created page with " == Headline text == Welcome to the Saturday lecture section of the Columbus Python Workshop! For about 2 hours, we'll work through an introduction to the Python programming l...")
 
imported>Catherinedevlin
(CodingBat -)
 
Line 9: Line 9:


* [http://mit.edu/jesstess/www/BostonPythonWorkshop6/state_capitals.py state_capitals.py] -- the state capitals example.
* [http://mit.edu/jesstess/www/BostonPythonWorkshop6/state_capitals.py state_capitals.py] -- the state capitals example.
* [http://codingbat.com/home/bostonpythonworkshop@gmail.com/SaturdayMorning Saturday morning CodingBat review].
* Saturday morning IPython Notebook review
* [http://codingbat.com/home/bostonpythonworkshop@gmail.com/Saturday Saturday lecture CodingBat practice].
* Saturday morning IPython Notebook practice


For extra practice, see Python's [http://docs.python.org/tutorial/introduction.html official tutorial].
For extra practice, see Python's [http://docs.python.org/tutorial/introduction.html official tutorial].

Latest revision as of 00:16, 7 January 2013

Headline text

Welcome to the Saturday lecture section of the Columbus Python Workshop! For about 2 hours, we'll work through an introduction to the Python programming language via both a lecture and hand-on exercises.

Resources

  • state_capitals.py -- the state capitals example.
  • Saturday morning IPython Notebook review
  • Saturday morning IPython Notebook practice

For extra practice, see Python's official tutorial.

« Back to the Workshop home page

Lecture outline

  1. review Friday material
    • math
    • type()
    • variables
    • strings
    • booleans
    • if/elif/else
    • functions
  2. lists
    • purpose
    • initialization
    • len() review
    • accessing elements
    • adding elements
    • changing elements
    • slicing lists
    • strings are like lists
  3. loops and more flow control
    • for loops
    • if statements inside for loops
    • nested for loops
    • range()
    • while loops
    • infinite loops
    • if statements inside while loops
    • break
    • raw_input()
  4. dictionaries
    • purpose
    • initialization
    • accessing elements
    • adding elements
    • changing elements
    • keys() and values()
  5. modules
    • purpose
    • builtins
    • imports
    • import random
    • random.randint
    • random.choice
    • walk through state_capitals.py

Where state_capitals.py from http://mit.edu/jesstess/www/BostonPythonWorkshop6/state_capitals.py is the grand finale and synthesis of lecture material.

« Back to the Workshop home page