So say I have a Class:
class Testclass:
def __init__(self, key)
self.key = key
def function(self, key):
do something ...
can I call specifically the function
without calling the whole __init__
somewhere down the line inside a Testclass Method?
I need this because I have two functions within __init__
and I need them separately.
Or maybe I am doing this all wrong from the get go, so any other suggestions would be welcome.