Python List reverse()方法
Python List reverse()方法
reverse() 函数用于反向列表中元素。
语法
reverse()方法语法:
list.reverse()
参数
- NA。
返回值
该方法没有返回值,但是会对列表的元素进行反向排序。
实例
以下实例展示了 reverse()函数的使用方法:
#!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc', 'xyz'] aList.reverse() print "List : ", aList
以上实例输出结果如下:
List : ['xyz', 'abc', 'zara', 'xyz', 123]
相关文章
- Python 循环语句
- Python 循环嵌套
- Python 节点
- Python3 集合(Set)
- Python os.chroot() 方法
- Python os.close() 方法
- Python os.fstatvfs() 方法
- Python os.mknod() 方法
- Python os.pathconf() 方法
- Python os.rename() 方法
- Python os.rmdir() 方法
- Python os.stat() 方法
- Python os.symlink() 方法
- Python os.tcsetpgrp() 方法
- Python os.tempnam() 方法
- Python decode()方法
- Python isdecimal()方法
- Python ljust()方法
- Python 字典 Dictionary copy()方法
- Python 字典 Dictionary get()方法