這條線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'>我想要的輸出(對(duì)于 collections.nametuple0code_event strcode_event str如何解決這個(gè)問(wèn)題?
1 回答

泛舟湖上清波郎朗
TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超3個(gè)贊
使用__name__
for i,k in (p[0].__dict__).items():
print (i,type(k).__name__)
>>> a = "hi"
>>> type(a).__name__
'str'
>>>
添加回答
舉報(bào)
0/150
提交
取消