-
-
Save stephengruppetta/c358004fe5976c9f4894df8ffd7d1dc2 to your computer and use it in GitHub Desktop.
This file contains 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
# schools.py | |
from hogwarts_magic import House | |
class Hogwarts: | |
_houses = { | |
"Gryffindor": House( | |
"Gryffindor", "Godric Gryffindor", ["scarlet", "gold"], "lion" | |
), | |
"Slytherin": House( | |
"Slytherin", "Salazar Slytherin", ["green", "silver"], "serpent" | |
), | |
"Ravenclaw": House( | |
"Ravenclaw", "Rowena Ravenclaw", ["blue", "bronze"], "eagle" | |
), | |
"Hufflepuff": House( | |
"Hufflepuff", "Helga Hufflepuff", ["yellow", "black"], "badger" | |
), | |
} | |
@classmethod | |
def get_house(cls, house_name): | |
return cls._houses.get(house_name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment