This article mainly introduces how to use the remove () method to delete elements in the Python list. It is the basic knowledge in the Python getting started. Pay attention to the differences between it and the pop () method, you can refer to the remove () method to delete the first obj from the list.
Syntax
The following is the syntax of the remove () method:
List. remove (obj)
Parameters
- Obj -- this is the object that can be removed from the list.
Return Value
This method does not return any value, but deletes the specified object from the list.
Example
The following example shows how to use the remove () method.
#! /Usr/bin/pythonaList = [123, 'xyz', 'zara ', 'abc', 'xyz']; aList. remove ('xyz'); print "List:", aList; aList. remove ('abc'); print "List:", aList;
When we run the above program, it will produce the following results:
List: [123, 'zara ', 'abc', 'xyz'] List: [123, 'zara', 'xyz']