# Python CodeRecipe|extend()の使い方

Home List Methods

# extend()の例1

Add the elements of cars to the fruits list:

    fruits = ['apple', 'banana', 'cherry']
    cars = ['Ford', 'BMW', 'Volvo']
    fruits.extend(cars)
  

# extend()の定義及び使い方

extend()関数は、指定されたリスト要素(または反復可能な)を現在のリストの最後に追加します。

# extend()の構文

list.extend(iterable)

# extend()の引数

パラメータ 説明

iterable 必須. Any iterable (list, set, tuple, etc.)

# Example

Add a tuple to the fruits list:

    fruits = ['apple', 'banana', 'cherry']
    points = (1, 4, 5, 9)
    fruits.extend(points)
  

Home List Methods