Skip to content

Instantly share code, notes, and snippets.

@saumalya75
Last active August 22, 2020 08:12
Show Gist options
  • Select an option

  • Save saumalya75/4498e60eaf84c2b9fc807b187e70c02a to your computer and use it in GitHub Desktop.

Select an option

Save saumalya75/4498e60eaf84c2b9fc807b187e70c02a to your computer and use it in GitHub Desktop.
class Student:
def __init__(self, name: str, phone_number: int, standard: str):
self.name = name
self.standard = standard
self.phone_number = phone_number
def __str__(self):
return self.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment