How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance h
Do you want the name of the class as a string?
instance.__class__.__name__