美文网首页
python 如何为 tuple 中每个元素命名?

python 如何为 tuple 中每个元素命名?

作者: 北冢 | 来源:发表于2017-12-11 20:17 被阅读0次
    from collections import namedtuple
    
    
    Student = namedtuple('Student', ['name', 'age', 'gender', 'email'])
    s = Student('Tom', 16, 'male', 'xxx@gmail.com')
    # s 为内置元组带子类
    print(s.name)
    # 输出为:'Tom'
    print(s.age)
    # 输出为:16
    

    相关文章

      网友评论

          本文标题:python 如何为 tuple 中每个元素命名?

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