I am working on a method to return all the class variables as keys and values as values of a dictionary , for instance i have:
first.py
class A: a =
Use a dict comprehension on A.__dict__ and filter out keys that start and end with __:
A.__dict__
__
>>> class A: a = 3 b = 5 c = 6 ... >>> {k:v for k, v in A.__dict__.items() if not (k.startswith('__') and k.endswith('__'))} {'a': 3, 'c': 6, 'b': 5}