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
On 26/10/17 21:02, Chris Coleman wrote:
> i wrote these programs and saved them per instructions on page 128 and 129
> in the book "python in easy steps".
I don't know the book but...
>
> class Person:
> '''A base class to define Person properties.'''
> def__init__(self,name):
> s
On Thu, Oct 26, 2017 at 3:02 PM, Chris Coleman wrote:
>
> 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):
The above line should ge