Answers for "get all variables of python class"

1

python get names of all classes

"""Returns a list of (name, value) for each class"""

import sys
import inspect
clsmembers = inspect.getmembers(sys.modules[__name__], inspect.isclass)
Posted by: Guest on October-18-2020
0

how to get all values from class in python

>>> an = Animal()
>>> attrs = vars(an)
#{'kids': 0, 'name': 'Dog', 'color': 'Spotted', 'age': 10, 'legs': 2, 'smell': 'Alot'}
Posted by: Guest on November-27-2020

Code answers related to "get all variables of python class"

Python Answers by Framework

Browse Popular Code Answers by Language