python 中的[::-1]
轉自:http://www.cnblogs.com/mxh1099/p/5804064.html
for value in rang(10)涉及的數字倒序輸出:
for value in rang(10)[::-1]涉及的數字倒序輸出:
一、反轉
二、詳解
這個是python的slice notation的特殊用法。
a = [0,1,2,3,4,5,6,7,8,9]
b = a[i:j] 表示複製a[i]到a[j-1],以生成新的list物件
b = a[1:3] 那麼,b的內容是 [1,2]
當i預設時,預設為0,即 a[:3]相當於 a[0:3]
當j預設時,預設為len(alist), 即a[1:]相當於a[1:10]
當i,j都預設時,a[:]就相當於完整複製一份a了
b = a[i:j:s]這種格式呢,i,j與上面的一樣,但s表示步進,預設為1.
所以a[i:j:1]相當於a[i:j]
當s<0時,i預設時,預設為-1. j預設時,預設為-len(a)-1
所以a[::-1]相當於 a[-1:-len(a)-1:-1],也就是從最後一個元素到第一個元素複製一遍。所以你看到一個倒序的東東。
如果還不理解,把我說的東西測試一遍,你就明白了
相關文章
- python 中的UDP和TCP(1)PythonUDPTCP
- Python中的Berkeley DB(1):Hello Berkeley DBPython
- python中while 1表示什麼PythonWhile
- Python 中的 web 常見框架(Django 專案1)PythonWeb框架Django
- PYTHON基礎教程中的十個專案(1)Python
- Python 中的類(中)Python
- Python中如何求1-100的奇數和?方法詳解!Python
- Python面試題1:類變數在繼承中的深入理解Python面試題變數繼承
- 我認識的python(1)Python
- Python之路,Day1 - Python基礎1Python
- Python中的字串Python字串
- python 中的序列Python
- python中的tracebackPython
- Python中的tuplePython
- Python中的dictPython
- python中的風險Python
- Python中的字典Python
- python中的 += 與 +Python
- Python中的methodPython
- Python中的ClassPython
- python 中的 flaskPythonFlask
- 7-1 jmu-python-輸入輸出-計算字串中的數Python字串
- python1Python
- 1、你好,PythonPython
- python(python中的super函式、)Python函式
- ruby 中的 forwardable 模組(1)Forward
- Python的Tkinter庫總結(1)Python
- python之pandas的基本使用(1)Python
- 演算法 1~n中1的次數演算法
- android中string.xml中%1$s、%1$d等的用法AndroidXML
- 學習記錄1:python中replace和split對字串處理的區別Python字串
- Python中的類和物件(中級)Python物件
- Python中列表的方法Python
- Python中的多程式Python
- python中return的用法Python
- Python中的Unittest框架Python框架
- python中的註釋Python
- python中*args的使用Python