-
-
Save RobertWang/016b327390d1618cfd845132af4e679e 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