「Python」スライスの基本使い方

環境
PyCharm 2021.3
Python 3.9.7

構文
変数名 = list(range(数値))
変数名[start:stop:step]]
コロンを使って表すスライス[start:stop:step]によって、リストや文字列、
タプルなどのシーケンスオブジェクトの一部分を選択します。

使用例

import numpy as np

ct = list(range(10))
print(ct)

print(ct[5:9])

print(ct[-5:-2])

print(ct[::-1])

実行結果

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
[5, 6, 7, 8]
[5, 6, 7]
[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]

 

Python

Posted by arkgame