Last active
August 22, 2020 08:12
-
-
Save saumalya75/6726b2c1a5cd83eeb2b0369b05512b77 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 House: | |
| def __init__(self, name: str, symbol: str, student_list: list): | |
| self.name = name | |
| self.symbol = symbol | |
| self.student_list = student_list | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment