扫码一下
查看教程更方便
Python 元组 len() 方法计算元组元素个数。
len()方法语法:
len(tuple)
函数返回元组元素个数。
以下实例展示了 len()方法的使用方法:
#!/usr/bin/python
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