For example I have
class A:
def f(self, x, y, z):
# do something with x, y, z
Is it possible to override f without retyping "self, x, y, z". Basically I have a class with function with 10 arguments, and intend on having many classes extending it, so I would prefer not to type the arguments every time. Please do not just tell me to pass a list/dictionary of all the arguments.
pass a list/dictionary of all the argumentsas per your questionclass B(A)to make your question more clear.