List in Python w3schools

Python List remove[] Method

List Methods

Example

Remove the "banana" element of the fruit list:

fruits = ['apple', 'banana', 'cherry']

fruits.remove["banana"]
Try it Yourself »

Definition and Usage

The remove[] method removes the first occurrence of the element with the specified value.

Syntax

list.remove[elmnt]

Parameter Values

Parameter Description
elmnt Required. Any type [string, number, list etc.] The element you want to remove

List Methods


Video liên quan

Chủ Đề