List remove(obj) Method

In Python Built-In List remove(obj) method is used to search for the given element in the list and removes the first matching element from the list. Syntax: There is 1 Parameter used in the list remove(obj) method: obj Object to be removed from the given list. Example:

List index(obj) Method

In Python Built-In List index(obj) method is used to return the lowest index that obj appears in the given list. Syntax: There is 1 Parameter used in the list index(obj) method: obj Shows the object to be to find out in the list. Example:

List extend(seq) Method

In Python Built-In List extend(seq) method is used to append the contents of seq to given list. Syntax: There is 1 Parameter used in list extend(seq) method: seq Shows the list of the element. Example:

List insert(index, obj) Method

In Python Built-In List insert(index, obj) method is used to inserts object obj into list at offset index. Syntax: There are 2 Parameters used in the list index(index, obj) method:  obj Shows the object to be inserted in the list. index Shows where the object obj to be inserted. Example:

List count(obj) Method

In Python Built-In List count(obj) method is used to returns the count of how many times obj occurs in the given list. Syntax: There is 1 Parameter used in list count(obj) method: obj Shows the object to be counted in the list. Example:

List len(list) Function:

In Python Built-In List len(list) function is used to returns the number of elements in the given list. Syntax: There is 1 Parameter used in Lists len(list) Function: list for which the number of elements to be counted. Example:

List append(obj) Method

In Python Built-In List append(obj) method is used to append a passed obj into the existing list. Syntax: There is 1 Parameter used in list append(obj) method: obj Shows the object to be appended in the list. Example:

List min(list) Function:

In Python Built-In List min(list) function is used to returns the elements from the given list with minimum value. Syntax: There is 1 Parameter used in List min(list) Function: list from which min value to be returned. Example:

List max(list) Function:

In Python Built-In List max(list) function is used to return the elements from the given list with maximum value. Syntax: There is 1 Parameter used in List max(list) Function: list from which max value to be returned. Example:

Lists cmp() Function

In Python Built-In Lists cmp() function is used to compare 2 elements in the given list. Syntax: There are 2 parameters used in Lists cmp() Function : list1 The first list to be compared and list2 The second list to be compared. Example: