The len() method in python
Python len() method returns the length of the object (character, list, tuple, etc.) or the number of items.
Syntax
len() method syntax:
len( s )
Parameters
s -- Object.
Return value
Return the length of the object.
Example
>>>str = "runoob" >>> len(str) # 字符串长度 6 >>> l = [1,2,3,4,5] >>> len(l) # 列表元素个数 5
The above is the detailed content of What does len mean in python?. For more information, please follow other related articles on the PHP Chinese website!