I want to be able to do the following
class Parent: def __init__(self): pass def Create(self): return 'Password' class Child(Parent): def __init__(self): self.Create() def Create(self): return 'The '+self.Create
I would like to get the parent function from a child class in a function that overrides it. I do not know how to do that.
This is a little difficult to explain, comment if you have problems with understanding.
Edit:
Thanks for the answers to everyone, I almost thought it was impossible.
source share