Created
March 4, 2016 06:28
-
-
Save ideadsnow/f0543065e72f88003b28 to your computer and use it in GitHub Desktop.
python 打印对象全部属性
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def prn_obj(obj): | |
print ', '.join(['%s:%s' % item for item in obj.__dict__.items()]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment