Python列表切片操作
Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> lis = [0,1,2,3,4,5,6,7,8,9]
>>> lis
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> lis[::-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
>>> lis[9:0:-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1]
>>> lis[-1:-10:-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1]
>>> lis[9:-10:-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1]
>>> lis[-1:0:-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1]
>>>
>>>
>>>
>>> lis[-1:-10:1]
[]
>>> lis[-1:0:-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1]
>>> lis[-1:-0:-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1]
>>> lis[::1]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> lis[::-1]
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
>>> lis[::]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> lis[::-2]
[9, 7, 5, 3, 1]
>>> lis[3:6]
[3, 4, 5]
>>> lis[3:-2]
[3, 4, 5, 6, 7]
>>>
相關文章
- python列表切片是什麼Python
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- python學習筆記 列表的切片Python筆記
- python列表中切片的正負數Python
- 『無為則無心』Python序列 — 19、Python列表的其他操作(切片和遍歷)Python
- python學習:字串切片操作Python字串
- 109-Python中列表索引和切片Python索引
- Python 列表切片陷阱:引用、複製與深複製Python
- Python列表操作方法Python
- python中的列表操作Python
- Python 列表操作指南1Python
- Python 列表操作指南3Python
- 用切片操作實現的Python篩法Python
- python高階特性:切片/迭代/列表生成式/生成器Python
- 【編測編學】零基礎學python_11_列表(切片+遍歷切片+複製)Python
- 切片操作及原理
- 03.切片操作
- python基礎(三)——操作列表Python
- 04-python的列表操作Python
- python列表元組的操作Python
- Python元組、列表、集合及列表去重操作Python
- 貝斯狸的 Python 之旅 -- 深入切片操作及原理Python
- Python基礎-列表操作(2):列表的遍歷和數字列表Python
- python 複製以及更改列表操作Python
- Python: 列表、陣列及迭代器切片的區別及聯絡Python陣列
- python字串切片Python字串
- Python學習之路3-操作列表Python
- python 多元列表操作兩大誤區Python
- Python基礎——while、字串、列表及操作PythonWhile字串
- Python操作列表的常用方法總結Python
- 微課|中學生可以這樣學Python(5.8.2節):使用切片修改列表Python
- 列表切片賦值給另一個變數賦值變數
- python資料型別-列表建立和操作Python資料型別
- 【Python】python 基礎語法之列表、n維陣列的變換(取反(逆序)\切片等)Python陣列
- python的特性 – 切片Python
- python切片處理Python
- python切片詳解Python
- 切片操作專題之numpy、pandas