Boston Python Workshop 6/Saturday lecture: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Jesstess
No edit summary
imported>Jesstess
m (Protected "Boston Python Workshop 6/Saturday lecture" ([edit=sysop] (indefinite) [move=sysop] (indefinite)))
 
(One intermediate revision by the same user not shown)
Line 18: Line 18:
# review Friday material
# review Friday material
#* math
#* math
#* type()
#* <tt>type()</tt>
#* variables
#* variables
#* strings
#* strings
#* booleans
#* booleans
#* if/elif/else
#* <tt>if</tt>/<tt>elif</tt>/<tt>else</tt>
#* functions
#* functions
# lists
# lists
#* purpose
#* purpose
#* initialization
#* initialization
#* len() review
#* <tt>len()</tt> review
#* accessing elements
#* accessing elements
#* adding elements
#* adding elements
Line 34: Line 34:
#* strings are like lists
#* strings are like lists
# loops and more flow control
# loops and more flow control
#* for loops
#* <tt>for</tt> loops
#* if statements inside for loops
#* <tt>if</tt> statements inside <tt>for</tt> loops
#* for loops inside for loops
#* nested <tt>for</tt> loops
#* range()
#* <tt>range()</tt>
#* while loops
#* <tt>while</tt> loops
#* infinite loops
#* infinite loops
#* if statements inside while loops
#* <tt>if</tt> statements inside <tt>while</tt> loops
#* break
#* <tt>break</tt>
#* raw_input
#* <tt>raw_input()</tt>
# dictionaries
# dictionaries
#* purpose
#* purpose
Line 49: Line 49:
#* adding elements
#* adding elements
#* changing elements
#* changing elements
#* keys() and values()
#* <tt>keys()</tt> and <tt>values()</tt>
# modules
# modules
#* purpose
#* purpose

Latest revision as of 14:17, 9 May 2012

Welcome to the Saturday lecture section of the Boston 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

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