Python 3 - 元组 len() 方法

  • 描述

    len()方法返回元组中元素的数量。
  • 句法

    以下是语法len()方法 -
    
    len(tuple)
    
  • 参数

    tuple− 这是一个要计算元素数量的元组。
  • 返回值

    此方法返回元组中的元素数。
  • 例子

    以下示例显示了 len() 方法的用法。
    
    #!/usr/bin/python3
    tuple1, tuple2 = (123, 'xyz', 'zara'), (456, 'abc')
    print ("First tuple length : ", len(tuple1))
    print ("Second tuple length : ", len(tuple2))
    
  • 结果

    当我们运行上面的程序时,它会产生以下结果 -
    
    First tuple length :  3
    Second tuple length :  2