python namedtuple命名元组
Posted hailuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python namedtuple命名元组相关的知识,希望对你有一定的参考价值。
from collections import namedtuple Animal=namedtuple(\'Animal\',\'name age type\') perry=Animal(name=\'perry\',age=1,type=\'cat\') print(perry.type) print(perry[0]) print(perry._asdict())
以上是关于python namedtuple命名元组的主要内容,如果未能解决你的问题,请参考以下文章