Can use self.__class__.__name__
inside an instance method, but I need to do something like this
class Utilities:
className = Utilities.__name__
I am hoping to assign the class name to className
(and do something with it later) to a class variable, but unable to figure it out.
Any ideas anyone? TIA