Introspect the class name of object?

D

Davy

Hi all,

How to get the class name of an object from an introspect way?
For example,
Class cls:pass

obj = cls()

I want to get function(obj) = 'cls'

Best regards,
Davy
 
S

Steven D'Aprano

Hi all,

How to get the class name of an object from an introspect way? For
example,
Class cls:pass

obj = cls()

I want to get function(obj) = 'cls'


obj.__class__ returns the class itself.

obj.__class__.__name__ returns the name of the class as a string.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top