Is the __str__
function looking alright? I mean stringRep is changed several times and the last version is returned.
I think the body of the function should look like this:
stringRep = "First Name: " + self.firstName + "\n" +\
"Last Name: " + self.lastName + "\n" +\
"Phone Number : " + self.phoneNo + "\n"
return stringRep