nov 27
object inheritence
class Parent:
def say_hello(self):
print "Hi there"
class Child(Parent):
"""gets all methods from Parent"""
bob = Child()
bob.say_hello()
See inheritence_demo.py, attached.
CGI
Here are some links to read about HTML, CGI, and how python can connect the two.
Googling 'CGI', 'HTML', 'python', and 'tutorial' in various combinations will
find lots of sites that discuss these topics.