import inspect class myclass: a = 5 def method(b): return b for i in inspect.getmembers(myclass): print(i)