Python 3 - 列表 len() 方法
-
描述
len()方法返回列表中的元素数。 -
句法
以下是语法len()方法 -len(list)
-
参数
list− 这是要计算元素数量的列表。 -
返回值
此方法返回列表中的元素数。 -
例子
以下示例显示了 len() 方法的用法。#!/usr/bin/python3 list1 = ['physics', 'chemistry', 'maths'] print (len(list1)) list2 = list(range(5)) #creates list of numbers between 0-4 print (len(list2))
-
结果
当我们运行上面的程序时,它会产生以下结果 -3 5