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
相关用法
- Python numpy string less_equal()用法及代码示例
- Python calendar leapdays()用法及代码示例
- Python list remove()用法及代码示例
- Python locals()用法及代码示例
- Python PIL logical_and() and logical_or()用法及代码示例
- Python list index()用法及代码示例
- Python ldexp()用法及代码示例
- Python PIL logical_xor() and invert()用法及代码示例
- Python list copy()用法及代码示例
- Python log10()用法及代码示例
- Python Functools lru_cache()用法及代码示例
- Python linecache.getline()用法及代码示例
- Python list()用法及代码示例
- Python list insert()用法及代码示例
- Python lzma.LZMACompressor()用法及代码示例
- Python list pop()用法及代码示例
- Python list sort()用法及代码示例
- Python list reverse()用法及代码示例
- Python string lstrip()用法及代码示例
- Python numpy.less()用法及代码示例
注:本文由纯净天空筛选整理自 len() function with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。