How can I get a list of which vars are defined in a class, without the classes imported in it?
vars(obj) returns all the vars in the class, excluding unwanted bliltin vars, like __doc__, __file__, __name__, __package__, os, pdb, etc.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have several ways to get either the
classvariables or an instance variables. Leverage the coding conventions that enforce built-in functions being surrounded by double underscore chars ('__builtin__'):