リストを結合する

extend()を使用します。

items = [1, 2, 3, 4, 5]

items.extend([999])
print(items) # [1, 2, 3, 4, 5, 999]

複数の要素がある場合は各要素が追加されます。

items = [1, 2, 3, 4, 5]

items.extend(['a', 'b'])
print(items) # [1, 2, 3, 4, 5, 'a', 'b']

「+」を使うこともできます。

items = [1, 2, 3, 4, 5]

new_items = items + ['a', 'b']
print(new_items) # [1, 2, 3, 4, 5, 'a', 'b']

関連項目