python print all class object properties code example
Example: 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'}
>>> an = Animal()
>>> attrs = vars(an)
#{'kids': 0, 'name': 'Dog', 'color': 'Spotted', 'age': 10, 'legs': 2, 'smell': 'Alot'}