# Python CodeRecipe|remove()の使い方

Home List Methods

# remove()の例1

Remove the "banana" element of the fruit list:

    fruits = ['apple', 'banana', 'cherry']
    fruits.remove("banana")

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

remove()関数は、最初の 指定された値を持つエレメントのオカレンス。

# remove()の構文

list.remove(elmnt)

# remove()の引数

パラメータ 説明

elmnt 必須. Any type (string, number, list etc.) The element you want to remove

Home List Methods