how to remove a specific number from a list python code example
Example 1: python list remove item by value
l = ['Alice', 'Bob', 'Charlie', 'Bob', 'Dave']
print(l)
# ['Alice', 'Bob', 'Charlie', 'Bob', 'Dave']
l.remove('Alice')
print(l)
# ['Bob', 'Charlie', 'Bob', 'Dave']
Example 2: how to remove a element from list in python and print it
pop(n) removes the element at the given index number and can print it