当前位置:主页 > 软件编程 > Python代码 >

python 打印对象的所有属性值的方法

时间:2020-11-29 10:57:18 | 栏目:Python代码 | 点击:

如下所示:

def prn_obj(obj): 
  print '\n'.join(['%s:%s' % item for item in obj.__dict__.items()]) 

您可能感兴趣的文章:

相关文章