Python List len()方法
Python List len()方法
len() 方法返回列表元素个数。
语法
len()方法语法:
len(list)
参数
- list -- 要计算元素个数的列表。
返回值
返回列表元素个数。
实例
以下实例展示了 len()函数的使用方法:
#!/usr/bin/python list1, list2 = [123, 'xyz', 'zara'], [456, 'abc'] print "First list length : ", len(list1); print "Second list length : ", len(list2);
以上实例输出结果如下:
First list length : 3 Second lsit length : 2
相关文章
- Python continue 语句
- Python 日期和时间
- Python 面向对象
- Python 正则表达式
- Python 搜索树
- Python 回溯
- Python 大O符号
- Python3 环境搭建
- Python3 集合(Set)
- Python3 迭代器
- Python max() 函数
- Python uniform() 函数
- Python File next() 方法
- Python File truncate() 方法
- Python os.chdir() 方法
- Python os.lchflags() 方法
- Python os.major() 方法
- Python maketrans()方法
- Python List append()方法
- Python 字典 Dictionary items()方法