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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。