i wrote these programs and saved them per instructions on page 128 and 129
in the book "python in easy steps".
class Person:
'''A base class to define Person properties.'''
def__init__(self,name):
self.name = name
def speak( self,msg = '(Calling The Base Class)'):
print
just learning python as my first programming language. going through the
book "python in easy steps" by mike mcgrath. i am going through the
programs in chapter 7 and can't get them to work. here is the first one in
the chapter:
class Bird:
'''A base class to define bird properties.'''
c