当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python len()用法及代码示例


Python len() 函数

len() 函数是 Python 中的一个库函数,用于获取对象的长度(对象可以是字符串、列表、元组等)。它接受一个对象并返回其长度(字符串情况下的字符总数,可迭代情况下的元素总数)。

用法:

    len(object)

参数:object– 要计算长度的对象,如字符串、列表等。

返回值: int– 返回对象的长度。

例:

    Input:
    a = "Hello world!"
    print(len(a))
    
    Output:
    12

获取对象长度的 Python 代码(字符串、列表等)

# python code to demonstrate an example
# of len() function

a = "Hello world!"          # string value
b = [10, 20, 30, 40, 50]    # list
c = ["Hello", "World!", "Hi", "Friends"] # list of strings
d = ("Hello", "World!", "Hi", "Friends") # Tuple

print("length of a:", len(a))
print("length of b:", len(b))
print("length of d:", len(c))
print("length of c:", len(d))

输出

length of a: 12
length of b: 5
length of d: 4
length of c: 4


相关用法


注:本文由纯净天空筛选整理自 len() function with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。