Python.md (261B)
1 title: Python. 2 3 # Python 4 5 ## Getting a dictionary of the attribute name and attribute value pairs 6 7 ```python 8 class a: 9 b = 'b' 10 def __init__(self, c): 11 self.c = c 12 def who(self): 13 return(scipy.who(vars(self))) 14 ```