Python 3 – Tuple len() Method
描述
len() 方法返回元组中元素的数量。
语法
以下是 len() 方法的语法 –
len(tuple)
参数
tuple - 要计算元素数的元组。
返回值
该方法返回元组中元素的数量。
示例
以下示例展示了如何使用len()方法。
#!/usr/bin/python3
tuple1, tuple2 = (123, 'xyz', 'zara'), (456, 'abc')
print ("第一个元组的长度为:", len(tuple1))
print ("第二个元组的长度为:", len(tuple2))
结果
运行上述程序后,将产生以下结果 –
第一个元组的长度为:3
第二个元组的长度为:2