Last active
August 22, 2020 08:12
-
-
Save saumalya75/5a308175d6ce2fae59197da2bdf9b8d5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Student: | |
| def __init__(self, name: str, phone_number: int, standard: str): | |
| self.name = name | |
| self.standard = standard | |
| self.phone_number = phone_number | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment