Skip to content

Instantly share code, notes, and snippets.

@RobertWang
Forked from ideadsnow/prn_obj.py
Created September 18, 2016 14:50
Show Gist options
  • Save RobertWang/016b327390d1618cfd845132af4e679e to your computer and use it in GitHub Desktop.
Save RobertWang/016b327390d1618cfd845132af4e679e to your computer and use it in GitHub Desktop.
python 打印对象全部属性
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