-
-
Save stephengruppetta/11b1a3bdde74a58029e78f5956709987 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
# making_magic.py | |
from hogwarts_magic import Student | |
hermione = Student("Hermione Granger", "otter", 1979, 1) | |
malfoy = Student("Draco Malfoy", "stag", 1980, 1) | |
hermione.increase_skill(0.5) | |
print(hermione > malfoy) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment