The following python code has a missing attribute. If we run this code as it is now, we will get an error message. Debug the code by adding the missing attribute and run the program and get the output.
#Encapsulaiton
Don't use plagiarized sources. Get Your Custom Essay on
Question & Answer: The following python code has a missing attribute. If we run this code as it is now, we will get an error…..
GET AN ESSAY WRITTEN FOR YOU FROM AS LOW AS $13/PAGE
class Employee:
def __init__(self):
self.__ssn = ‘307 878 876’
def pirntInfo(self):
print(self.__ssn)
employee1 = Employee()
Expert Answer
class Employee:
def __init__(self):
self.__ssn = ‘307 878 876’
def pirntInfo(self):
print(self.__ssn)
“This would create first object of Employee class”
employee1 = Employee()
employee1 .pirntInfo()