Is there any way to call functions inside a class without triggering the __init__ part of that class? Let's say I have the next class, usually I'd call the function this way:
class Potato():
def __init__(self):
print("Initializing")
def myfunction(self):
print("I do something")
Potato().myfunction()
But as expected that prints the Initializing part. Now, If I wanted to call myfunction without triggering that. How would you do it? Pros and cons of doing it? It's even possible?