Python リスト(List)の末尾からN個の要素を取得するサンプル
環境
Windows 11 Pro 64bit
Python 3.11
構文
#N=取得する要素数
lastN = list[-N:]
リスト(List)の末尾からN個の要素を取得するには、スライスを使います。
list[-N:]のように、取得する要素数のマイナスの値から末尾までスライスします。
使用例
ns = [1, 2, 3, 4, 5, 6] lastN = ns[-3:] print(lastN)
実行結果
[4, 5, 6]