Python List reverse()方法
Python List reverse()方法
reverse() 函數(shù)用于反向列表中元素。
語(yǔ)法
reverse()方法語(yǔ)法:
list.reverse()
參數(shù)
- NA。
返回值
該方法沒有返回值,但是會(huì)對(duì)列表的元素進(jìn)行反向排序。
實(shí)例
以下實(shí)例展示了 reverse()函數(shù)的使用方法:
#!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc', 'xyz'] aList.reverse() print "List : ", aList
以上實(shí)例輸出結(jié)果如下:
List : ['xyz', 'abc', 'zara', 'xyz', 123]
相關(guān)文章
- Python 循環(huán)語(yǔ)句
- Python 循環(huán)嵌套
- Python 節(jié)點(diǎn)
- 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()方法