Python List len()方法
Python List len()方法
len() 方法返回列表元素個(gè)數(shù)。
語(yǔ)法
len()方法語(yǔ)法:
len(list)
參數(shù)
- list -- 要計(jì)算元素個(gè)數(shù)的列表。
返回值
返回列表元素個(gè)數(shù)。
實(shí)例
以下實(shí)例展示了 len()函數(shù)的使用方法:
#!/usr/bin/python list1, list2 = [123, 'xyz', 'zara'], [456, 'abc'] print "First list length : ", len(list1); print "Second list length : ", len(list2);
以上實(shí)例輸出結(jié)果如下:
First list length : 3 Second lsit length : 2
相關(guān)文章
- Python continue 語(yǔ)句
- Python 日期和時(shí)間
- Python 面向?qū)ο?/a>
- Python 正則表達(dá)式
- Python 搜索樹
- Python 回溯
- Python 大O符號(hào)
- Python3 環(huán)境搭建
- Python3 集合(Set)
- Python3 迭代器
- Python max() 函數(shù)
- Python uniform() 函數(shù)
- Python File next() 方法
- Python File truncate() 方法
- Python os.chdir() 方法
- Python os.lchflags() 方法
- Python os.major() 方法
- Python maketrans()方法
- Python List append()方法
- Python 字典 Dictionary items()方法