Python 的 len(~)
方法返回序列或集合的长度(项目数)。
参数
1. s
| sequence or collection
返回项目数量/长度的对象。
类型 |
例子 |
---|---|
Sequence |
字符串、字节、元组、列表或范围 |
Collection |
字典、集合或冻结集 |
返回值
提供的序列或集合的长度(项目数)。
例子
String
要检索字符串的长度:
x = 'SkyTowner'
len(x)
9
List
要检索列表的长度:
y = ['cake', 'cookie', 'cupcake', ['pudding','tea']]
len(y)
4
请注意,嵌入列表仅算作一项。
字典
要检索字典的长度:
z = {'1':'one', '2':'two', '3':'three'}
len(z)
3
相关用法
- Python len()用法及代码示例
- Python NumPy less_equal方法用法及代码示例
- Python numpy string less_equal()用法及代码示例
- Python calendar leapdays()用法及代码示例
- Python NumPy lexsort方法用法及代码示例
- Python NumPy less方法用法及代码示例
- Python list remove()用法及代码示例
- Python locals()用法及代码示例
- Python Django logout用法及代码示例
- Python NumPy logaddexp2方法用法及代码示例
- Python PIL logical_and() and logical_or()用法及代码示例
- Python NumPy log方法用法及代码示例
- Python NumPy logspace方法用法及代码示例
- Python Django login用法及代码示例
- Python NumPy logical_or方法用法及代码示例
- Python NumPy log2方法用法及代码示例
- Python logging.handlers.SocketHandler.makePickle用法及代码示例
- Python NumPy lcm方法用法及代码示例
- Python ldexp()用法及代码示例
- Python NumPy loadtxt方法用法及代码示例
- Python PIL logical_xor() and invert()用法及代码示例
- Python logging.Logger.debug用法及代码示例
- Python list转string用法及代码示例
- Python logging.debug用法及代码示例
- Python NumPy log1p方法用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python | len method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。