Boston Python workshop 2/Saturday lecture: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Jesstess
No edit summary
imported>Jesstess
Line 4: Line 4:


# review printing and Python as a calculator from Friday evening
# review printing and Python as a calculator from Friday evening
# conditionals: booleans, if, ==, !=, in
# booleans and flow control: truthiness, if, equality, in
# lists
# lists
# loops and flow control: for, while, break, continue
# loops and more flow control: for, while, break, continue
# dictionaries and tuples
# dictionaries and tuples
# functions
# functions

Revision as of 18:05, 15 May 2011

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.

Lecture outline

  1. review printing and Python as a calculator from Friday evening
  2. booleans and flow control: truthiness, if, equality, in
  3. lists
  4. loops and more flow control: for, while, break, continue
  5. dictionaries and tuples
  6. functions
  7. classes
  8. modules

Resources

For extra practice, see Python's official tutorial.