-
-
Save stephengruppetta/8c4f25e1749b894f0bc8eec13df6cb90 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" | |
), | |
} | |
print(Hogwarts._houses) | |
print(Hogwarts()._houses) | |
print(Hogwarts._houses is Hogwarts()._houses) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment