Answers for "python loop over class attributes"

0

iterate through attributes of class python

L = [[getattr(self, attr), attr] for attr in dir(self) if not attr.startswith("__")]
Posted by: Guest on November-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language