123456789101112131415161718192021 |
- class Employee:
- """A sample Employee class"""
- def __init__(self, first, last):
- self.first = first
- self.last = last
- print('Created Employee: {} - {}'.format(self.fullname, self.email))
- @property
- def email(self):
- return '{}.{}@email.com'.format(self.first, self.last)
- @property
- def fullname(self):
- return '{} {}'.format(self.first, self.last)
- emp_1 = Employee('John', 'Smith')
|