Home >Backend Development >Python Tutorial >在Python中处理列表之reverse()方法的使用教程

在Python中处理列表之reverse()方法的使用教程

WBOY
WBOYOriginal
2016-06-06 11:17:231910browse

 reverse()方法代替逆转列表对象。
语法

以下是reverse()方法的语法:

list.reverse()

参数

  •     NA

返回值

此方法不返回任何值,但反转列表中的给定对象。
例子

下面的例子显示了reverse()方法的使用。

#!/usr/bin/python

aList = [136, 'xyz', 'zara', 'abc', 'xyz','hema'];

aList.reverse();
print "List : ", aList;

当我们运行上面的程序,它会产生以下结果:

List : ['hema','xyz', 'abc', 'zara', 'xyz', 126]

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn