用法:
somenamedtuple._fields
列出字段名称的字符串元组。对于自省和从现有命名元组创建新的命名元组类型很有用。
>>> p._fields # view the field names ('x', 'y') >>> Color = namedtuple('Color', 'red green blue') >>> Pixel = namedtuple('Pixel', Point._fields + Color._fields) >>> Pixel(11, 22, 128, 255, 0) Pixel(x=11, y=22, red=128, green=255, blue=0)
相关用法
- Python collections.somenamedtuple._field_defaults用法及代码示例
- Python collections.somenamedtuple._replace用法及代码示例
- Python collections.somenamedtuple._asdict用法及代码示例
- Python collections.somenamedtuple._make用法及代码示例
- 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._fields。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。