About
class Sumanth:
def __init__(self):
self.role = "Student"
self.study_year = 2
self.field = "Robotics and Artificial Intelligence"
self.college = "JNNCE"
self.projects = ["chatting app", "company websites"]
self.skills = ["coding", "AI", "Arduino"]
def contribute(self):
return "Committed to open-source and breaking robots with bugs (sometimes on purpose!)"
def __str__(self):
return f"{self.role} | {self.study_year}nd year | {self.field} @ {self.college} | Debugging life one commit at a time."