So I'm trying to make a class called Dean and this class has to be able to call upon the super class of say (just printing out a text). I was told to use Professor.say(self, stuff) to call upon the superclass of say but I don't really get that.
My code is as follows:
Class Dean(Professor):
Professor.say(self, stuff)
self.say(stuff + "- We need money now, send")
If it wasn't clear before, the whole point is to make it so that Dean says this for any instance of the superclass say, meaning even if there are other instances of say in subclasses (like the Lecturer or Professor in my other Python question) that it'll still say "- We need money now, send". Answers are appreciated but just tips on where I'm confused are just as good.