class ManojKatwal:
def __init__(self):
self.name = "Manoj Katwal"
self.role = "Full Stack Developer"
self.education = "CS Student @ Itahari International College"
self.current_focus = [
"RojgarSetu Job Portal",
"Java Full Stack",
"React Projects",
"Spring Boot APIs"
]
self.goal = "Build scalable and impactful software"
def mantra(self):
return "Code. Break. Fix. Learn. Repeat."
me = ManojKatwal()
print(me.mantra())$ python manoj.py
Code. Break. Fix. Learn. Repeat.

