python でのリスト操作方法のメモ。
■リストの末尾に要素を追加 (スタックの push)
■リストの末尾の要素を削除 (スタックの pop)
■リストの連結
■リストの先頭に要素を追加
■リストの先頭から要素を削除
■リストの末尾に要素を追加 (スタックの push)
items = [0, 1, 2, 3] items.append(4) items -> [0, 1, 2, 3]
■リストの末尾の要素を削除 (スタックの pop)
items = [0, 1, 2, 3, 4] a = items.pop() a -> 4 items -> [0, 1, 2, 3]
■リストの連結
items = [0, 1, 2, 3, 4] items.extend([5, 6, 7]) items -> [0, 1, 2, 3, 4, 5, 6, 7]
■リストの先頭に要素を追加
items = [0, 1, 2, 3] items.insert(0, -1) items -> [-1, 0, 1, 2, 3]
■リストの先頭から要素を削除
items = [-1, 0, 1, 2, 3] a = items.pop(0) a -> -1 items -> [0, 1, 2, 3]