python list.reverse()
函数用于反转列表元素。
语法
它有两种类型的语法,如下:list对象.reverse()
list.reverse(list对象)
参数
没有参数
返回值
没有返回值,反转列表元素。
程序示例
#!/usr/bin/python
# coding=utf-8
list1 = ['a', 'b', 'c', 'd']
list1.reverse()
print(list1)
list.reverse(list1)#第二种语法 再反转回来
print(list1)
程序运行结果:
['d', 'c', 'b', 'a']
['a', 'b', 'c', 'd']
['a', 'b', 'c', 'd']