Perl Primer

Where to get Python: ... Adds list at the end of list A A.insert(index,item) Adds item at position index in A, and move the remaining items to the right Remove values del A[i] Removes element at position i in the list A Item=A.pop(index) Removes object at position index in A, and stores it in variable item A.remove(item) Search for item in A ... ................
................