🙋🏻♂️
class TaylorVaroglu:
def __init__(self):
self._hobbies = ("MMA", "Snowboarding", "Fitness", "Guitar")
self._industry_targets = ("Clean Energy", "MedTech", "EdTech", "FinTech")
self._contact_info = {
"Email": "taylor.varoglu@gmail.com",
"LinkedIn": "https://www.linkedin.com/in/taylorvaroglu/"
}
@property
def full_name(self):
return f"{self.__class__.__name__[:6]} {self.__class__.__name__[6:]}"
def introduce(self):
print(f"Hello! My name is {self.full_name}.")
print(f"My top targets for new opportunities are within {', or '.join([i for i in self._industry_targets])}.")
print(f"In my free time, I've recently started to learn {self._hobbies[0]}.")
print(f"You can reach me at {self._contact_info['Email']} or {self._contact_info['LinkedIn']}")
if __name__ == '__main__':
tv = TaylorVaroglu()
tv.introduce()