Montreal Python Workshop/Saturday lecture: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Gward
(Created page with "{{:Boston_Python_Workshop_7/Saturday_lecture}}")
 
imported>Merwok
(Adapt links)
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.
{{:Boston_Python_Workshop_7/Saturday_lecture}}

== Resources ==

* [[Boston Python Workshop 7/Data types| Python data types cheat sheet]].
* [[Boston Python Workshop 7/Loops| Python loops cheat sheet]].

* [https://raw.github.com/jvns/mtlpytutorial/master/capitals.py capitals.py] -- the state capitals example.
* [http://codingbat.com/home/bostonpythonworkshop@gmail.com/SaturdayMorning Saturday morning CodingBat review].
* [http://codingbat.com/home/bostonpythonworkshop@gmail.com/Saturday Saturday lecture CodingBat practice].

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

[[Boston Python Workshop 7|« Back to the Workshop home page]]

== Lecture outline ==

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

Where capitals.py from https://raw.github.com/jvns/mtlpytutorial/master/capitals.py is the grand finale and synthesis of lecture material.

[[Boston Python Workshop 7|&laquo; Back to the Workshop home page]]

Revision as of 02:03, 20 February 2013

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 capitals.py from https://raw.github.com/jvns/mtlpytutorial/master/capitals.py is the grand finale and synthesis of lecture material.

« Back to the Workshop home page