zoukankan      html  css  js  c++  java
  • python中关于元组的操作

    元组的基本操作:
    1.创建一个元组:

    tuple=(1,26);
    tuple1=("15","sy");

    创建一个空元组:

    tuple=();

    元组中只包含一个元素时,需要在元素后面添加逗号来消除歧义;

    tuple=(50,)

    2.访问元组:

    tup1 = ('physics', 'chemistry', 1997, 2000);
    tup2 = (1, 2, 3, 4, 5, 6, 7 );
    
    print "tup1[0]: ", tup1[0]
    print "tup2[1:5]: ", tup2[1:5]
    #以上实例输出结果:
    #tup1[0]:  physics
    #tup2[1:5]:  [2, 3, 4, 5]

    3.修改元组:

    tup1 = (12, 34.56);
    tup2 = ('abc', 'xyz');
    
    # 以下修改元组元素操作是非法的。
    # tup1[0] = 100;
    
    # 创建一个新的元组
    tup3 = tup1 + tup2;
    print tup3;
    #以上实例输出结果:
    #(12, 34.56, 'abc', 'xyz')

    4.删除元组:

    tup = ('physics', 'chemistry', 1997, 2000);
    
    print tup;
    del tup;
    print "After deleting tup : "
    print tup;

    5.与字符串一样,元组之间可以使用 + 号和 * 号进行运算。这就意味着他们可以组合和复制,运算后会生成一个新的元组。

    6.

    Python元组包含了以下内置函数
    1、cmp(tuple1, tuple2):比较两个元组元素。
    2、len(tuple):计算元组元素个数。
    3、max(tuple):返回元组中元素最大值。
    4、min(tuple):返回元组中元素最小值。
    5、tuple(seq):将列表转换为元组。

  • 相关阅读:
    Liunx cal
    Liunx read
    IOS
    IOS
    ARPSpoofing教程(四)
    ARPSpoofing教程(三)
    ARPSpoofing教程(二)
    数据结构与算法分析
    hdu 2034
    hdu 2042
  • 原文地址:https://www.cnblogs.com/mlmy/p/6308900.html
Copyright © 2011-2022 走看看