Python List append()方法
描述
append() 方法用于在列表末尾添加新的对象。
语法
append()方法语法:
list.append(obj)
参数
- obj -- 添加到列表末尾的对象。
返回值
该方法无返回值,但是会修改原来的列表。
实例
以下实例展示了 append()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘];
aList.append( 2009 );
print "Updated List : ", aList;
以上实例输出结果如下:
Updated List : [123, ‘xyz‘, ‘zara‘, ‘abc‘, 2009]
Python List count()方法
描述
count() 方法用于统计某个元素在列表中出现的次数。
语法
count()方法语法:
list.count(obj)
参数
- obj -- 列表中统计的对象。
返回值
返回元素在列表中出现的次数。
实例
以下实例展示了 count()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘, 123];
print "Count for 123 : ", aList.count(123);
print "Count for zara : ", aList.count(‘zara‘);
以上实例输出结果如下:
Count for 123 : 2
Count for zara : 1
Python List extend()方法
描述
extend() 函数用于在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表)。
语法
extend()方法语法:
list.extend(seq)
参数
返回值
该方法没有返回值,但会在已存在的列表中添加新的列表内容。
实例
以下实例展示了 extend()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘, 123];
bList = [2009, ‘manni‘];
aList.extend(bList)
print "Extended List : ", aList ;
以上实例输出结果如下:
Extended List : [123, ‘xyz‘, ‘zara‘, ‘abc‘, 123, 2009, ‘manni‘]
Python List index()方法
描述
index() 函数用于从列表中找出某个值第一个匹配项的索引位置。
语法
index()方法语法:
list.index(obj)
参数
- obj -- 查找的对象。
返回值
该方法返回查找对象的索引位置,如果没有找到对象则抛出异常。
实例
以下实例展示了 index()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘];
print "Index for xyz : ", aList.index( ‘xyz‘ ) ;
print "Index for zara : ", aList.index( ‘zara‘ ) ;
以上实例输出结果如下:
Index for xyz : 1
Index for zara : 2
Python List insert()方法
描述
insert() 函数用于将指定对象插入列表。
语法
insert()方法语法:
list.insert(index, obj)
参数
- index -- 对象obj需要插入的索引位置。
- obj -- 要出入列表中的对象。
返回值
该方法没有返回值,但会在列表指定位置插入对象。
实例
以下实例展示了 insert()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘]
aList.insert( 3, 2009)
print "Final List : ", aList
以上实例输出结果如下:
Final List : [123, ‘xyz‘, ‘zara‘, 2009, ‘abc‘]
Python List pop()方法
描述
pop() 函数用于移除列表中的一个元素(默认最后一个元素),并且返回该元素的值。
语法
pop()方法语法:
list.pop(obj=list[-1])
参数
- obj -- 可选参数,要移除列表元素的对象。
返回值
该方法返回从列表中移除的元素对象。
实例
以下实例展示了 pop()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘];
print "A List : ", aList.pop();
print "B List : ", aList.pop(2);
以上实例输出结果如下:
A List : abc
B List : zara
Python List remove()方法
描述
remove() 函数用于移除列表中某个值的第一个匹配项。
语法
remove()方法语法:
list.remove(obj)
参数
- obj -- 列表中要移除的对象。
返回值
该方法没有返回值但是会移除两种中的某个值的第一个匹配项。
实例
以下实例展示了 remove()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘, ‘xyz‘];
aList.remove(‘xyz‘);
print "List : ", aList;
aList.remove(‘abc‘);
print "List : ", aList;
以上实例输出结果如下:
List : [123, ‘zara‘, ‘abc‘, ‘xyz‘]
List : [123, ‘zara‘, ‘xyz‘]
Python List reverse()方法
描述
reverse() 函数用于反向列表中元素。
语法
reverse()方法语法:
list.reverse()
参数
- NA。
返回值
该方法没有返回值,但是会对列表的元素进行反向排序。
实例
以下实例展示了 reverse()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘, ‘xyz‘];
aList.reverse();
print "List : ", aList;
以上实例输出结果如下:
List : [‘xyz‘, ‘abc‘, ‘zara‘, ‘xyz‘, 123]
Python List sort()方法
描述
sort() 函数用于对原列表进行排序,如果指定参数,则使用比较函数指定的比较函数。
语法
sort()方法语法:
list.sort([func])
参数
- func -- 可选参数, 如果指定了该参数会使用该参数的方法进行排序。
返回值
该方法没有返回值,但是会对列表的对象进行排序。
实例
以下实例展示了 sort()函数的使用方法:
#!/usr/bin/python
aList = [123, ‘xyz‘, ‘zara‘, ‘abc‘, ‘xyz‘];
aList.sort();
print "List : ", aList;
以上实例输出结果如下:
List : [123, ‘abc‘, ‘xyz‘, ‘xyz‘, ‘zara‘]