Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created July 27, 2023 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephengruppetta/fb6e2cad8c8360535d1a17d6f631540d to your computer and use it in GitHub Desktop.
Save stephengruppetta/fb6e2cad8c8360535d1a17d6f631540d to your computer and use it in GitHub Desktop.
# making_magic.py
from hogwarts_magic import Student
hermione = Student("Hermione Granger", "otter", 1979, 1)
other_hermione = Student("Hermione Granger", "otter", 1979, 1)
print(hermione == other_hermione)
print(hermione is other_hermione)
print(hermione == hermione)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment