remove index from array list code example

Example 1: how to remove an element in a list by index python

list = [0, 1, 2, 3, 4, 5]

print(list)
# [0, 1, 2, 3, 4, 5]

del list[0]
print(list)
# [1, 2, 3, 4, 5]
      
del list[-2]
print(list)
# [1, 2, 3, 5]
      
del list[0:2]
print(list)
# [3, 5]

Example 2: python list remove at index

>>> a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> del a[-1]
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8]

Example 3: java arraylist remove

//create ArrayList
ArrayList<String> arrayList = new ArrayList<String>();
//add item to ArrayList
arrayList.add("item");
//check if ArrayList contains item (returns boolean)
System.out.println(arrayList.contains("item"));
//remove item from ArrayList
arrayList.remove("item");

Example 4: arraylist remove method java

public E remove(int index)	// returns removed element at index

Tags:

Misc Example