[Tutor] problem with program in python in easy steps

2017-10-26 Thread Chris Coleman
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

[Tutor] problem with program

2017-10-13 Thread Chris Coleman
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