用法:
somenamedtuple._asdict()
返回一個新的
dict
,它將字段名稱映射到它們的對應值:>>> p = Point(x=11, y=22) >>> p._asdict() {'x': 11, 'y': 22}
在 3.1 版中更改:返回一個
OrderedDict
而不是常規的dict.在 3.8 版中更改:返回一個常規的dict而不是一個
OrderedDict
.從 Python 3.7 開始,保證對常規字典進行排序。如果額外的函數OrderedDict
是必需的,建議的補救措施是將結果轉換為所需的類型:OrderedDict(nt._asdict())
.
相關用法
- Python collections.somenamedtuple._replace用法及代碼示例
- Python collections.somenamedtuple._field_defaults用法及代碼示例
- Python collections.somenamedtuple._make用法及代碼示例
- Python collections.somenamedtuple._fields用法及代碼示例
- Python collections.ChainMap用法及代碼示例
- Python collections.Counter用法及代碼示例
- Python collections.Counter.subtract用法及代碼示例
- Python collections.Counter.total用法及代碼示例
- Python collections.Counter.elements用法及代碼示例
- Python collections.OrderedDict.move_to_end用法及代碼示例
- Python Wand color_matrix()用法及代碼示例
- Python compile()用法及代碼示例
- Python codecs.encode()用法及代碼示例
- Python contextlib.AsyncContextDecorator用法及代碼示例
- Python contextlib.AsyncExitStack用法及代碼示例
- Python string count()用法及代碼示例
- Python configparser.ConfigParser.readfp用法及代碼示例
- Python code.compile_command()用法及代碼示例
- Python complex()用法及代碼示例
- Python configparser.ConfigParser.BOOLEAN_STATES用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 collections.somenamedtuple._asdict。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。