What method do I call to get the name of a class?
In [1]: class test(object): ...: pass ...: In [2]: test.__name__ Out[2]: 'test'
2.1m questions
2.1m answers
60 comments
57.0k users