Python 中的 len()
函数 是一个内置函数,用于返回容器中的项数,例如字符串、列表、元组、字典等。它计算对象的长度,通常用于测量数据结构的大小。
参数值
参数 | 说明 |
---|---|
s |
|
返回值
len()
函数返回一个表示项数的 int
。
如何在 Python 中使用 len()
示例 1
len()
函数返回对象中的项数。对于 字符串,它返回字符串中的字符数。
string = 'Hello World'
length = len(string)
print('Length of string:', length)
示例 2
len()
函数还可以用于确定列表中的元素数。
my_list = [1, 2, 3, 4, 5]
list_length = len(my_list)
print('Length of list:', list_length)