My questions is regarding subclasses in Python.
For example, if I have the following code.
The question is how would you access the function in the sub class as opposed to the one in the base class?
For example, if I have the following code.
Code:
class Myclass:
def __init__(self, input)
self.input = input
def function(self, input)
return output
class MySubclass(Myclass)
def function(self, input)
return output
Comment