Skip to content

Instantly share code, notes, and snippets.

View TheHimanshuRastogi's full-sized avatar
🎯
Focusing

Himanshu Rastogi TheHimanshuRastogi

🎯
Focusing
View GitHub Profile
class Student:
def __init__(self, first_name, last_name):
self.first_name = first_name
self.last_name = last_name
def verify_registration_status(self):
status = self.get_status()
self.status_verified = status == "registered"
def get_guardian_name(self):