Python標準庫:內建函式slice(stop) slice(start, stop[, step])
轉自:http://blog.csdn.net/caimouse/article/details/44998357
本函式是實現切片物件,主要用在切片操作函式裡的引數傳遞。
例子:
#slice()
myslice = slice(5)
print(myslice)
l = list(range(10))
print(l[myslice])
結果輸出如下:
slice(None, 5, None)
[0, 1, 2, 3, 4]
相關文章
- crsctl start/stop crs and crsctl start/stop cluster 區別
- rac中 crsctl start/stop crs and crsctl start/stop cluster 區別
- oracle多例項start-stop指令碼Oracle指令碼
- Hive函式(內建函式+自定義標準函式UDF)Hive函式
- Oracle 10g isqlplus start/stopOracle 10gSQL
- python程式設計之slice與indices函式用法Python程式設計函式
- hyperf 服務管理指令碼 start、restart、stop、status指令碼REST
- 10g dbconsole start/stop/status
- jQuery stop()jQuery
- stop and stare
- js字串擷取函式slice()、substring()、substr()JS字串函式
- Weblogic and Component(OVD/OID/Web) start, stop和restartWebREST
- Stop runnung job
- Python3.5.2 document學習系列之03、The Python Standard Library(python 標準庫)——內建函式Python函式
- Javascript之字串擷取函式slice()、substring()、substr()JavaScript字串函式
- linux中守護程式啟停工具start-stop-daemonLinux
- CRS: Resource in UNKNOWN state and srvctl Cannot Start/Stop Resource_845709.1
- Stop SCM Server.Server
- Python內建函式Python函式
- python 內建函式Python函式
- Go語言Slice作為函式引數詳解Go函式
- slice 物件物件
- jQuery slice()jQuery
- C語言標準函式庫C語言函式
- Python內建函式示例Python函式
- python常用內建函式Python函式
- 1.5.5 Python內建函式Python函式
- Python內建函式(一)Python函式
- Python內建函式(二)Python函式
- Python 內建函式大全Python函式
- python內建函式大全Python函式
- python 常用內建函式Python函式
- python內建函式——sortedPython函式
- JS字串擷取函式slice(),substring(),substr()的區別JS字串函式
- stop/start The CRS, OHAS, ASM, RDBMS & ACFS Services on RAC 11.2_1355977.1ASM
- 新增 Nginx 為系統服務(service nginx start/stop/force-reload)Nginx
- Golang Slice技巧Golang
- JavaScript 字串slice()JavaScript字串