Q:

remove array element python

my_list = [1,2,4,6,7]

del my_list[1] # Removes index 1 from the list
print my_list # [1,4,6,7]
my_list.remove(4) # Removes the integer 4 from the list, not the index 4
print my_list # [1,6,7]
my_list.pop(2) # Removes index 2 from the list
3
your_array.remove(the_element)
1
#Create and print array
arr = ["hello", "bonjour", "hola"]
print(arr)

#Remove "hello" from array
arr.remove("hello")
print(arr)
3
arr = []
arr.remove(value)
2

New to Communities?

Join the community