Skip to content

Instantly share code, notes, and snippets.

@ideadsnow
Created March 4, 2016 06:28
Show Gist options
  • Save ideadsnow/f0543065e72f88003b28 to your computer and use it in GitHub Desktop.
Save ideadsnow/f0543065e72f88003b28 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