Closed am-cid closed 6 months ago
no descriptions means the same as python's behavior
prepend()
insert(0)
pop()
index()
-1
extend()
prextend()
clear()
count()
no descriptions means the same as python's behavior
prepend()
prepends items to start of the arrayinsert(0)
under the hoodpop()
removes the last element in the list ALWAYS and does not return anythingindex()
works the same but instead of raising when cannot find the value, it will return-1
extend()
prextend()
like extend but at the beginning of the listclear()
count()