标签:abc cond /usr 计算 语法 second bin class usr
Python 元组 len() 方法计算元组元素个数。
len()方法语法:
len(tuple1, tuple2)
函数返回元组元素个数。
以下实例展示了 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
标签:abc cond /usr 计算 语法 second bin class usr
原文地址:http://www.cnblogs.com/wushuaishuai/p/7729857.html