-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Riedl Kevin, Bsc. (WSDT) edited this page Jun 17, 2020
·
3 revisions
Welcome to my personal wiki! Thank you for your interest, just take a look at the sidebar.
class Recruiter:
def __init__(self, company, has_job_offer):
self.company = company
self.has_job_offer = has_job_offer
def contact_me(self):
print("Send me an e-mail to [email protected] ...")
you = Recruiter("Innovative Company", True)
if you.has_job_offer:
you.contact_me()
else:
print("Just searching interesting open-source projects?")