Python program to Use Classes and Constructor

class company:
 def __init__(self, employee_firstname, employee_surname):
     self.firstname = employee_firstname
     self.surname = employee_surname
 def employee(self):
    return self.firstname + ' ' + self.surname
staff = []
for i in range(1):
     name = input("Insert firstname and surname: ")
     name = name.split()
     staff.append(company(name[0], name[1]))
for i in staff:
 print(i.employee())

 

 

Output:

Insert firstname and surname: Sunny Leonee
Sunny Leonee

 

Insert firstname and surname: Raja Simham
Raja Simham

 

Subscribe For Daily Updates

100+ Python Pattern Examplespython pattern examples - star patterns, number patterns