Boston Python workshop 2/Saturday lecture: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Jesstess
(Created page with '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…')
 
imported>Jesstess
No edit summary
Line 1: Line 1:
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.
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 ==
# Review printing and Python as a calculator, from Friday evening

# Useful data types: lists, dictionaries, and tuples
# Review printing and Python as a calculator from Friday evening
# Other useful data types: lists, dictionaries, and tuples
# Flow control: if, for, while, break, continue
# Flow control: if, for, while, break, continue
# Exceptions and debugging
# Exceptions and debugging
Line 10: Line 12:


== Resources ==
== Resources ==

* [http://mit.edu/jesstess/www/BostonPythonWorkshop/ Download or browse] the workshop exercises.
* [http://mit.edu/jesstess/www/BostonPythonWorkshop/data_types.txt summary sheet] for Python data types.
* [http://mit.edu/jesstess/www/BostonPythonWorkshop/data_types.txt summary sheet] for Python data types.
* [http://mit.edu/jesstess/www/BostonPythonWorkshop/ hands-on exercises] to practice Python.
* [http://mit.edu/jesstess/www/BostonPythonWorkshop/ hands-on exercises] to practice Python.

Revision as of 00:41, 24 April 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. Other useful data types: lists, dictionaries, and tuples
  3. Flow control: if, for, while, break, continue
  4. Exceptions and debugging
  5. Functions
  6. Classes
  7. Modules

Resources

For extra practice, see Python's official tutorial.