xxxxxxxxxx
my_list = [12, 'Siya', 'Tiya', 14, 'Riya', 12, 'Riya']
my_list.remove(12) # it will remove the element 12 at the start.
print(my_list)
xxxxxxxxxx
myList.remove(item) # Removes first instance of "item" from myList
myList.pop(i) # Removes and returns item at myList[i]
xxxxxxxxxx
# Example 1:
# animals list
animals = ['cat', 'dog', 'rabbit', 'guinea pig']
# 'rabbit' is removed
animals.remove('rabbit')
# Updated animals List
print('Updated animals list: ', animals)
# Example 2:
# animals list
animals = ['cat', 'dog', 'dog', 'guinea pig', 'dog']
# 'dog' is removed
animals.remove('dog')
# Updated animals list
print('Updated animals list: ', animals)
# Example 3:
# animals list
animals = ['cat', 'dog', 'rabbit', 'guinea pig']
# Deleting 'fish' element
animals.remove('fish')
# Updated animals List
print('Updated animals list: ', animals)
xxxxxxxxxx
# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
fruits = ["apple","charry","orange"]
fruits.extend(("banana","guava","rasbarrry"))
print(fruits)
#remove items from list
fruits.remove("apple")
print(fruits)
xxxxxxxxxx
# Basic syntax:
my_list.remove(element) # or:
my_list.pop(index)
# Note, .remove(element) removes the first matching element it finds in
# the list.
# Example usage:
animals = ['cat', 'dog', 'rabbit', 'guinea pig', 'rabbit']
animals.remove('rabbit')
print(animals)
--> ['cat', 'dog', 'guinea pig', 'rabbit']
# Note only the first instance of rabbit was removed from the list.
# Note, if you want to remove all instances of an element (and it's the only
# duplicated element), you could convert the list to a set then back to a
# list, and then run .remove(element) E.g.:
animals = list(set['cat', 'dog', 'rabbit', 'guinea pig', 'rabbit'])
animals.remove('rabbit')
print(animals)
--> ['cat', 'dog', 'guinea pig']
xxxxxxxxxx
myList = ['Item', 'Item', 'Delete Me!', 'Item']
del myList[2] # myList now equals ['Item', 'Item', 'Item']
xxxxxxxxxx
myList = ["hello", 8, "messy list", 3.14] #Creates a list
myList.remove(3.14) #Removes first instance of 3.14 from myList
print(myList) #Prints myList
myList.remove(myList[1]) #Removes first instance of the 2. item in myList
print(myList) #Prints myList
#Output will be the following (minus the hastags):
#["hello", 8, "messy list"]
#["hello", "messy list"]
xxxxxxxxxx
num = [1,2,3,7,4,5,6]
print("Before remove 7:", num)
num.remove(7)
print("After remove 7:", num)