美文网首页
Python collections模块--nametuple

Python collections模块--nametuple

作者: SateZheng | 来源:发表于2017-01-09 15:34 被阅读86次

    nametuple 可命名元祖

    nametuple 为元祖中每个位置分配含义,可以在使用常规元祖的地方使用,并且添加了通过名称而不是位置索引访问字段的功能。

    In [97]: Mytuple = collections.namedtuple('mytuple', ['x','y'])
    
    In [98]: Mytuple(1,2)
    Out[98]: mytuple(x=1, y=2)
    
    In [101]: n = Mytuple(1,2)
    
    In [102]: n
    Out[102]: mytuple(x=1, y=2)
    
    In [103]: n.x
    Out[103]: 1
    

    相关文章

      网友评论

          本文标题:Python collections模块--nametuple

          本文链接:https://www.haomeiwen.com/subject/jjlhbttx.html