You can’t normally access the class itself inside the class’ function declarations (because the class hasn't been finished declaring itself yet, because you’re still declaring its methods). So something like this isn't valid Python: class MyCla…