Python Workshops for Beginners/Saturday September 27th lecture: Difference between revisions

From OpenHatch wiki
Content added Content deleted
imported>Ehashman
imported>Ehashman
m (Typos)
 
(6 intermediate revisions by the same user not shown)
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 first Saturday lecture of the Python Workshops for Beginners! For about 2 hours, we'll work through an introduction to the Python programming language via both a lecture and hand-on exercises.


== Resources ==
== Resources ==
Line 5: Line 5:
* [[Python data types cheat sheet]]
* [[Python data types cheat sheet]]
* [[Python loops cheat sheet]]
* [[Python loops cheat sheet]]
* [http://mako.cc/teaching/2014/cdsw/state_capitals.py state_capitals.py] -- the state capitals example.
* [https://csclub.uwaterloo.ca/~ehashman/pwfb/provincial_capitals.py provincial_capitals.py] -- the provincial capitals example.
* [http://csclub.uwaterloo.ca/~ehashman/pwfb/pwfb-1.pdf Full slides deck]


== Lecture outline ==
== Lecture outline ==


=== Part 1 ===
=== Part 1 ===

Slides can be found here: https://csclub.uwaterloo.ca/~ehashman/pwfb/pwfb-1p1.pdf


# review Friday material
# review Friday material
Line 38: Line 41:
#* <tt>break</tt>
#* <tt>break</tt>
#* <tt>raw_input()</tt>
#* <tt>raw_input()</tt>
* Break!
* Break and exercise!


You will need the following code:
You will need the following code:
Line 45: Line 48:


=== Part 2 ===
=== Part 2 ===

Slides can be found here: https://csclub.uwaterloo.ca/~ehashman/pwfb/pwfb-1p2.pdf


# dictionaries
# dictionaries
Line 60: Line 65:
#* <tt>random.randint</tt>
#* <tt>random.randint</tt>
#* <tt>random.choice</tt>
#* <tt>random.choice</tt>
#* walk through state_capitals.py
#* walk through provincial_capitals.py


Where state_capitals.py from http://mako.cc/teaching/2014/cdsw/state_capitals.py is the grand finale and synthesis of lecture material.
Where provincial_capitals.py from https://csclub.uwaterloo.ca/~ehashman/pwfb/provincial_capitals.py is the grand finale and synthesis of lecture material.

Latest revision as of 22:08, 21 October 2014

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

Resources

Lecture outline

Part 1

Slides can be found here: https://csclub.uwaterloo.ca/~ehashman/pwfb/pwfb-1p1.pdf

  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()
  • Break and exercise!

You will need the following code:

grades = [86, 71, 91, 62, 85, 86, 72, 58, 65, 77, 54, 53, 56, 91, 93, 58, 80, 74, 75, 64]


Part 2

Slides can be found here: https://csclub.uwaterloo.ca/~ehashman/pwfb/pwfb-1p2.pdf

  1. dictionaries
    • purpose
    • initialization
    • accessing elements
    • adding elements
    • changing elements
    • keys() and values()
  2. modules
    • purpose
    • builtins
    • imports
    • import random
    • random.randint
    • random.choice
    • walk through provincial_capitals.py

Where provincial_capitals.py from https://csclub.uwaterloo.ca/~ehashman/pwfb/provincial_capitals.py is the grand finale and synthesis of lecture material.