append()
adds an element to the end of the list
clear()
Removes all the elements from the list
copy()
Returns a copy of the list
count()
Returns the number of element with the specified values
extend()
Add the elements of a list(or any iterable), to the end of the current list
index()
Return the index of the first element at the specified position
insert()
Adds an element at the specified position
pop()
Removes the element at the specified position
remove()
Removes the item with the specified value
reverse()
Reverses the order of the list
sort()
Sorts the list
Joining lists
[‘a’, ‘b’] + [‘c’, ‘d’]