Python 3 - 列表 reverse() 方法
-
描述
reverse()方法就地反转列表的对象。 -
句法
以下是语法reverse()方法 -list.reverse()
-
参数
NA -
返回值
此方法不返回任何值,而是从列表中反转给定的对象。 -
例子
以下示例显示了 reverse() 方法的用法。#!/usr/bin/python3 list1 = ['physics', 'Biology', 'chemistry', 'maths'] list1.reverse() print ("list now : ", list1)
-
结果
当我们运行上面的程序时,它会产生以下结果 -list now : ['maths', 'chemistry', 'Biology', 'physics']