当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python collections.somenamedtuple._replace用法及代码示例


用法:

somenamedtuple._replace(**kwargs)

返回命名元组的新实例,用新值替换指定字段:

>>> p = Point(x=11, y=22)
>>> p._replace(x=33)
Point(x=33, y=22)

>>> for partnum, record in inventory.items():
...     inventory[partnum] = record._replace(price=newprices[partnum], timestamp=time.now())

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 collections.somenamedtuple._replace。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。