这条线for i,k in (p[0].__dict__).items(): print (i,type(k))印刷code_event <class 'str'>code_event_system <class 'str'>event_no <class 'int'>group_no <class 'int'>我想要的输出(对于 collections.nametuple0code_event strcode_event str如何解决这个问题?
1 回答
泛舟湖上清波郎朗
TA贡献1818条经验 获得超3个赞
使用__name__
for i,k in (p[0].__dict__).items():
print (i,type(k).__name__)
>>> a = "hi"
>>> type(a).__name__
'str'
>>>
添加回答
举报
0/150
提交
取消