tuple笔记

作者: GHope | 来源:发表于2018-07-23 16:52 被阅读74次

    元组就是不可变的列表,列表中除了可变的操作,其他的操作都适用于元组

    元组值:使用()将元素包含起来,多个元素之间用,隔开,比如:(1,2,3,'sad')
    元素的类型可以是任何类型

    改、增、删相关操作不能作用于元组

    colors = ('red', 'gren', 'yellow', 'purple', 'blue', 'black')
    # find
    print(colors[1])
    print(colors[0:3])
    print(colors[0::2])
    for item in colors:
        print(item)
    
    # len
    print(len(colors))
    
    # in , not in
    print('red' in colors)
    
    # + and *
    print((2, 3) + (4, 5))
    

    元组特有查找方法

    names = ('Tom', 'Lucy', 'Lisa')
    """
    x, y, z = names
    print(x, y, z)
    """
    first, *midel, last = names  # 通过变量名前加*可以把变量名变成列表,获取多个元素
    print(first, midel, last)
    

    相关文章

      网友评论

        本文标题:tuple笔记

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