Skip to content

Instantly share code, notes, and snippets.

@stephengruppetta
Created May 15, 2023 19:40
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/db53ea0c8aec8f666398f4ff409d12fc to your computer and use it in GitHub Desktop.
Save stephengruppetta/db53ea0c8aec8f666398f4ff409d12fc to your computer and use it in GitHub Desktop.
# hogwarts_magic.py
class Wizard:
def __init__(self, name, patronus, birth_year):
self.name = name
self.patronus = patronus
self.birth_year = birth_year
self.house = None
self.wand = None
def assign_wand(self, wand):
self.wand = wand
print(f"{self.name} has a {self.wand} wand.")
class House:
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment