python列表长度怎么计算
python中的内置函数len()用于计算列表的长度,返回列表中元素的个数。
len()方法语法:
len(list)
参数
list -- 要计算元素个数的列表。
返回值
返回列表元素个数。
实例
以下实例展示了 len()函数的使用方法:
list1, list2 = [123, 'xyz', 'zara'], [456, 'abc'] print "First list length : ", len(list1); print "Second list length : ", len(list2);
以上实例输出结果
First list length : 3 Second lsit length : 2
来源:PY学习网:原文地址:https://www.py.cn/article.html