In this video we will discuss about List Functions in Python.
append - adds value at the end of the list
insert - adds value at a particular index
extend - adds all the elements of one list in another
pop - removes value from the given index
remove - removes first occurrence of the given value
sort - arranges the list in ascending or descending order
reverse - reverses the order of elements in the list
count - counts the occurrences of the given value
index - gives index of the given value
max(list) , min (list), sum(list), len(list) these functions can also be applied on to the list