Community Data Science Workshops (Fall 2014)/Day 1 lecture: Difference between revisions

no edit summary
imported>Mako
imported>Mako
No edit summary
 
(27 intermediate revisions by the same user not shown)
Line 1:
{{CDSW Moved}}
 
Welcome to the Saturday lecture section of the Community Data Science Workshop! For about 2 hours, we'll work through an introduction to the Python programming language via both a lecture and hand-on exercises.
 
At the beginning of the lecture, we'll give a [[Day 1 pre-lecture|short pre-lecture talk to motivate the sessions]].
 
== Resources ==
Line 36 ⟶ 40:
** e.g., <code>"i" in "team"</code>
** e.g., "i" not in "team"</code>
* <tt>if</tt>/<tt>elif</tt>/<tt>else</tt> ('''move to external file''')
** if, something that evaluates to a boolean, and then colon
** e.g., <code>if "mako" in "makoshark"</code>
** e.g., adding else example: <code>if brother_age > sister_age</code>
** e.g., tempreature range
** e.g., adding elif: fix the bug in the previous program if they were the same age
** indent with spaces (we use 4 spaces!)
* functions
Line 46 ⟶ 53:
=== Lists ===
 
* purpose
# lists
** Stores things ''in order''
#* purpose
#* initialization
** making a list called my list: <code>my_list = ["a", "b", "c"]</code>
#* <tt>len()</tt> review
** comma separated elements. in python they can be a mix of any kind of types
#* accessing elements
** <code>type(my_list)</code>
#* adding elements
* <tt>len()</tt> review
#* changing elements
* accessing elements
#* slicing lists
#** strings areindexing like listsmy_list[0]
** indexing starts from the front and we ''start counting at 0'' (now you understand all the zeros we've been using
#** len()
** we go from the end with negative numbers
#*** <code>len("")</code> length of the empty string
** what happens if we try to move outside of the range? ('''error!'')
# loops and more flow control
* adding elements
#* <tt>for</tt> loops
** using the the <code>my_list.append()</code> function
#* <tt>if</tt> statements inside <tt>for</tt> loops
** the <code>.append()</code> function is a special kind of function that lists know about
#* nested <tt>for</tt> loops
* changing elements
#* <tt>range()</tt>
** replacing elements like <code>my_list[0] = "foo"</code>
#* <tt>while</tt> loops
* finding elements in list
#* infinite loops
** e.g., <code>"z" in my_list</code>
#* <tt>if</tt> statements inside <tt>while</tt> loops
* slicing lists
#* <tt>break</tt>
** the colon inside the [] is the ''slicing syntax''
#* <tt>raw_input()</tt>
** e.g., <code>my_list[0:2]</code> is 0th up to, but not including, the 2nd
# dictionaries
** e.g., <code>my_list[2:]</code>
#* purpose
** e.g., <code>my_list[:2]</code>
#* initialization
** e.g., <code>my_list[:]</code>
#* accessing elements
* strings are like lists
#* adding elements
** we can slice lists
#* changing elements
** len()
#* <tt>keys()</tt> and <tt>values()</tt>
*** <code>len("")</code> length of the empty string
# modules
* many other interesting functions for lists
#* purpose
** e.g., <code>min()</code> and <code>max()</code>
#* builtins
** e.g., create a list of names and sort it <code>names.sort()</code>
#* imports
 
#* <tt>import random</tt>
=== loops and more flow control ===
#* <tt>random.randint</tt>
 
#* <tt>random.choice</tt>
* <tt>for</tt> loops
#* walk through state_capitals.py
** e.g., <code>for name in names: print name</code>
** e.g., <code>for name in names: print 'hello ' + name</code>
** Super powerful because it can do something many many times. Data science is about doing tedious things very quickly. For is the workhorse that makes this possible.
** Look and see name is after we're done looping.
** ''Move to editor.''
* <tt>if</tt> statements inside <tt>for</tt> loops
** e.g., <code>if name[0] in "AEIOU"</code> then print "starts with a vowel"
** show we can test things outside the loop to show how the comparisons are working
** add an else statement to capture words that start with a consonant
** append to a list within a for loop
** create a counter within a for loop (keep track)
** build up a sentence
* 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 state_capitals.py from http://mako.cc/teaching/2014/cdsw/state_capitals.py is the grand finale and synthesis of lecture material.
Anonymous user