reverse()方法代替逆转列表对象。
语法
以下是reverse()方法的语法:
1
|
list .reverse()
|
参数
- NA
返回值
此方法不返回任何值,但反转列表中的给定对象。
例子
下面的例子显示了reverse()方法的使用。
1
2
3
4
5
6
|
#!/usr/bin/python
aList = [ 136 , 'xyz' , 'zara' , 'abc' , 'xyz' , 'hema' ];
aList.reverse();
print "List : " , aList;
|
当我们运行上面的程序,它会产生以下结果:
1
|
List : [ 'hema' , 'xyz' , 'abc' , 'zara' , 'xyz' , 126 ]
|