Skip to content

Instantly share code, notes, and snippets.

@huytung228
Last active July 20, 2021 02:40
Show Gist options
  • Save huytung228/75a2a8baf84a2de5d7feb24521edbbe4 to your computer and use it in GitHub Desktop.
Save huytung228/75a2a8baf84a2de5d7feb24521edbbe4 to your computer and use it in GitHub Desktop.
class Employee:
def __init__(self, first, last, pay):
self.first = first
self.last = last
self.pay = pay
self.email = first+'.'+last+'@company.com'
def fullname(self):
return f"{self.first} {self.last}"
e1 = Employee('Le', 'Huy Tung', 50000)
print(e1.fullname())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment