class DeveloperProfile:
def __init__(self, name, role, passion, hobbies):
self.name = name
self.role = role
self.passion = passion
self.hobbies = hobbies
def introduce(self):
introduction = (
f"Hey, I'm {self.name}, a {self.role} with a knack for {self.passion}.\n"
f"I enjoy the journey of coding — transforming ideas into reality "
f"and continuously learning along the way.\n"
f"Beyond code, I recharge by {self.hobbies}.\n"
f"Always up for a chat about tech or art. Let's connect!\n"
)
return introduction
# Initialize with your details
abhinav = DeveloperProfile(
name="Abhinav Kashyap",
role="Full Stack Developer",
passion="innovation",
hobbies="exploring new technologies, Theatre 🎭, Cycling 🚴, Singing 🎵, Playing Chess ♟️"
)
Popular repositories Loading
-
-
-
-
-
-
system-design-primer
system-design-primer PublicForked from donnemartin/system-design-primer
Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.
Python
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.