方法len()返回list的元素数。
以下是len()方法的语法 -
len(list)
list - 这是要计算的元素数量的列表。
此方法返回列表中的元素数。
以下示例显示len()方法的用法。
#!/usr/bin/python
list1, list2 = [123, 'xyz', 'zara'], [456, 'abc']
print "First list length : ", len(list1)
print "Second list length : ", len(list2)
当我们运行上面的程序时,它产生以下结果 -
First list length : 3
Second list length : 2