Python Tuple(元组) len()方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Tuple(元组) len()方法相关的知识,希望对你有一定的参考价值。
描述
Python 元组 len() 方法计算元组元素个数。
语法
len()方法语法:
len(tuple1, tuple2)
参数
- 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
以上是关于Python Tuple(元组) len()方法的主要内容,如果未能解决你的问题,请参考以下文章