How do you call a method from the main() from a module to print base class attributes. Objects are contained in a list.
Module
def show_employee(self):
print 'Employee Name: ', self.__employee_name
print 'Employee Number: ', self.__employee_number