Skip to content

Commit 4d57667

Browse files
committed
Load the demonstration software
1 parent 3d1e9a1 commit 4d57667

23 files changed

+688
-0
lines changed

assertions.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
"""
2+
Precondition, postcondition, invariant
3+
4+
A while-loop can be derived by filling in this template
5+
with blocks S and T and condition P
6+
that establish invariant I and postcondition I and not P
7+
8+
S
9+
# pre: I
10+
while (P):
11+
# I
12+
T
13+
# post: I and not P
14+
"""
15+
16+
def quotient(n, d):
17+
"""
18+
Divide n by d, integer division by repeated subtraction
19+
n: dividend, d: divisor, q: quotient, r: remainder
20+
The definition of integer division is: n == q*d + r and r < d
21+
"""
22+
assert n >= 0 and d > 0 # function precondition
23+
r = n
24+
q = 0
25+
# assert n == q*d + r # loop precondition
26+
while (r >= d):
27+
# assert n == q*d + r # loop invariant
28+
r = r - d
29+
q = q + 1
30+
# assert n == q*d + r and r < d # postcondition
31+
return q
32+
33+
print '9/3 %s' % quotient(9,3)
34+
print '8/3 %s' % quotient(8,3)
35+
print '3/3 %s' % quotient(3,3)
36+
print '2/3 %s' % quotient(2,3)
37+
38+
# what happens if preconditions are violated?

class_inheritence_demo_1.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#! /usr/bin/python
2+
#
3+
#
4+
class A(object) :
5+
x = 1.0
6+
z = "spam!"
7+
8+
class B(A) :
9+
y = 2.7
10+
z = "vikings"
11+
12+
b = B( )
13+
14+
print b.x, b.y, b.z
15+
16+
a = A( )
17+
print a.x, a.z
18+

comprehensions.py

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
"""
2+
More list comprehension explanations and examples
3+
"""
4+
5+
from route import puget
6+
from phones import phones, physics_dept
7+
8+
print phones
9+
10+
# use a loop to build up a list from a source, filter, and pattern:
11+
def physics_people():
12+
names = []
13+
for (name, phone) in phones: # phones is the source
14+
if physics_dept(phone): # physics_deptn(phone) is the filter
15+
names.append(name) # name is the pattern
16+
return names
17+
18+
print physics_people()
19+
20+
# a list comprehension expresses the same thing in one expression
21+
# [ pattern for item in source if filter ]
22+
print [ name for (name, phone) in phones if physics_dept(phone) ]
23+
24+
# the pattern can be elaborate
25+
print [ "%s's phone is %s" % (name,phone)
26+
for (name, phone) in phones if physics_dept(phone) ]
27+
28+
29+
# note the difference between filter and conditional expr. in pattern
30+
31+
def odd(i): return i%2 # 1 (true) when i is odd, 0 (false) when even
32+
33+
print [ (i, 'odd') for i in range(5) if odd(i) ] # filter
34+
35+
print [ (i, 'odd' if odd(i) else 'even') for i in range(5) ] # pattern
36+
37+
38+
# map pattern: apply a function to each element in the source
39+
40+
print [ odd(i) for i in range(5) ]
41+
42+
# built-in map function is an alternative
43+
44+
print map(odd, range(5)) #
45+
46+
# filter pattern: use a filter (Boolean function) to select elements from source
47+
48+
print [ i for i in range(5) if odd(i) ]
49+
50+
# built-in filter function is an alternative
51+
52+
print filter(odd, range(5))
53+
54+

docstrings.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#! /usr/bin/python
2+
#
3+
# Demonstrates how to document a very confusing function
4+
5+
def confusion ( a, b, c ) :
6+
"""This is a very confusing function and you are wise to read the documentation
7+
for it.
8+
a is the first argument
9+
b is the second argument
10+
c is the third argument
11+
"""
12+
return ( a,b,c )
13+
14+
15+
print help(confusion)
16+
print "*" * 30
17+
print confusion.__doc__
18+
19+

duck.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#! /usr/bin/env python
2+
#
3+
#
4+
# This program demonstrates "duck typing", which is a form of polymorphism
5+
# Week 8
6+
#
7+
class A(object) :
8+
pass
9+
10+
class C(object) :
11+
pass
12+
13+
class B(A):
14+
def f(self, x):
15+
print "I am in function f in class B, x is ", x
16+
17+
class D(C):
18+
def f(self, x):
19+
print "I am in function f in class D, x is ", x
20+
21+
22+
b = B()
23+
d = D()
24+
25+
b.f("instance b")
26+
d.f("instance d")
27+
28+
def do_something(z):
29+
print "In do_something",
30+
y = 42 # A different universe of humor
31+
z.f(y)
32+
33+
34+
print "calling do_something with b",
35+
do_something(b)
36+
print "calling do_something with d",
37+
do_something(d)
38+

file_exception.py

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#! /usr/bin/python
2+
#
3+
#
4+
opened = False
5+
while not opened :
6+
filename = raw_input("Enter the filename ")
7+
try :
8+
f=file(filename,"r")
9+
except IOError:
10+
print "Unable to open "+filename
11+
opened = False
12+
else :
13+
opened = True
14+
print "opened file "+filename+"for reading"
15+
16+
for line in f :
17+
try :
18+
a_float_num = float(line)
19+
print "Read %g" % a_float_num
20+
except ValueError, e:
21+
print "Read something that wasn't a floating point number\n%s" % e
22+
except IOError:
23+
print "An I/O error occurred - continuing"
24+
25+
f.close()
26+

intro_to_constructors.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#! /usr/bin/python
2+
#
3+
#
4+
class C(object) :
5+
def __init__(self, x, y) :
6+
self.x = x
7+
self.y = y
8+
9+
i = C("Kg","Slug")
10+
11+
print i.x, i.y

intro_to_inheritence.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#! /usr/bin/python
2+
#
3+
#
4+
5+
class A(object) :
6+
def who_am_i(self):
7+
print "I am in class A"
8+
favorite_color = "Blue"
9+
y = "Why?"
10+
11+
class B(A) :
12+
def who_am_i(self):
13+
print "I am in class B"
14+
favorite_color = "Green"
15+
x = 42
16+
17+
a = A()
18+
a.who_am_i()
19+
try :
20+
print a.x
21+
except AttributeError, e :
22+
print "WHOOPS!", e
23+
print a.y
24+
25+
b = B()
26+
b.who_am_i()
27+
print b.x
28+
print b.y
29+
30+
31+

intro_to_methods.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#! /usr/bin/python
2+
#
3+
#
4+
# intro_to_methods.py
5+
#
6+
class F(object):
7+
def f(self,x) :
8+
self.x = x
9+
def p(self) :
10+
print self.x
11+
12+
f = F()
13+
f.f(4)
14+
f.p()

intro_to_polymorphism.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#! /usr/bin/python
2+
#
3+
#
4+
import multiple_inheritence as mi
5+
6+
def test_instance_of ( obj, obj_name, obj_class ) :
7+
print obj_name, "is", "" if isinstance(obj, obj_class) else "not", \
8+
"an instance of ", obj_class.__name__
9+
10+
11+
test_instance_of ( mi.e, 'e', mi.E )
12+
test_instance_of ( mi.a, 'a', mi.E )
13+
test_instance_of ( mi.e, 'e', mi.A )
14+
test_instance_of ( mi.b, 'b', mi.A )
15+
16+
def dispatcher ( g ):
17+
if isinstance(g, mi.A) :
18+
print g.a
19+
elif isinstance(g, mi.C) :
20+
print g.c
21+
else :
22+
print g.e
23+
24+
dispatcher ( mi.a )
25+
dispatcher ( mi.b )
26+
dispatcher ( mi.c )
27+
dispatcher ( mi.d )
28+
dispatcher ( mi.e )
29+
try :
30+
dispatcher ( "gee" )
31+
except AttributeError, err :
32+
print "WHOOPS!", err
33+
34+
35+

multiple_inheritence.py

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#! /usr/bin/python
2+
#
3+
# Week 8
4+
class A(object) :
5+
def who_am_i(self) :
6+
print "Defined in A"
7+
a = "eh?"
8+
9+
class B(A) :
10+
def who_am_i(self) :
11+
print "Defined in B"
12+
b = "bee"
13+
14+
class C(object) :
15+
def who_am_i(self) :
16+
print "Defined in C"
17+
c = "sea"
18+
19+
class D(C) :
20+
def who_am_i(self) :
21+
print "Defined in D"
22+
d = "Dee" # A river in Wales, see http://en.wikipedia.org/wiki/River_Dee_(Wales)
23+
24+
class E(B,D) :
25+
def who_am_i(self) :
26+
print "Defined in E"
27+
e = "ea." # an abbreviation for "each"
28+
29+
a = A()
30+
b = B()
31+
c = C()
32+
d = D()
33+
e = E()
34+
35+
if __name__ == "__main__" :
36+
37+
a.who_am_i()
38+
b.who_am_i()
39+
c.who_am_i()
40+
d.who_am_i()
41+
e.who_am_i()
42+
43+
print e.a, e.b, e.c, e.d, e.e

nested.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
"""
2+
print nested data structure with increasing indentation at each level
3+
4+
[ 'I....', 'II...', [ 'A...', 'B...' ], 'III....' ]
5+
6+
is printed
7+
8+
I...
9+
II...
10+
A...
11+
B...
12+
III...
13+
"""
14+
15+
outline = [ 'I....', 'II...', [ 'A...', [ 1, 2 ], 'B...' ], 'III....' ]
16+
17+
def print_nested(spaces, data):
18+
"""
19+
print nested data with increasing indentation at each level
20+
data is list of non-lists (strings, numbers...) and/or nested lists
21+
spaces is indentation, typically '' (empty string) at top level
22+
"""
23+
if isinstance(data, list):
24+
for item in data:
25+
print_nested(spaces + ' ', item) # recursive calls
26+
else:
27+
print '%s%s' % (spaces, data) # base case
28+
29+
if __name__ == '__main__':
30+
print_nested('', outline)

0 commit comments

Comments
 (0)