List Methods
List Methods
[1, 2, 3, 4]
[]
extend() Add the elements of a list (or any iterable), to the end of the current list
[1, 2, 3, 4, 5]
index() Returns the index of the first element with the specified value
[1, 1.5, 2, 3]
2
[1, 3]
[1, 3, 2]
[3, 2, 1]
[1, 2, 3]
In [ ]: