Python List reverse() Python List pop() Python List remove() Python List reverse() 在本教程中,我们将了解Python List的 reverse 方法。Python List reverse 方法用于反转列表。 Python 列表反向示例 您可以简单地调用 reverse 方法来反转列表。 让我们借助简单的例子来理解这一点。 listOfItems=['Clock','Bed','Fan','Table'] print("listOfItems:",listOfItems) listOfItems.reverse() print("listOfItems in reversed order:",listOfItems) 输出: listOfItems: [‘Clock’, ‘Bed’, ‘Fan’, ‘Table’] listOfItems in reversed order: [‘Table’, ‘Fan’, ‘Bed’, ‘Clock’] 正如您在此处看到的,使用 reverse 方法反转列表。 还有其他方法可以反转列表。您可以使用切片来反转列表。 listOfItems=['Clock','Bed','Fan','Table'] print("listOfItems:",listOfItems) listOfItems=listOfItems[::-1] print("listOfItems in reversed order:",listOfItems) 输出: listOfItems: [‘Clock’, ‘Bed’, ‘Fan’, ‘Table’] listOfItems in reversed order: [‘Table’, ‘Fan’, ‘Bed’, ‘Clock’] 如果您只想以相反的顺序遍历,您也可以使用 reversed 函数。 listOfItems=['Clock','Bed','Fan','Table'] for item in reversed(listOfItems): print(item) 输出: Table Fan Bed Clock 这就是 Python List 反向方法的全部内容。 Python List pop() Python List remove()