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()方法