Remove an Element from a List in Python

  • Post category:List

Removing specific elements from a list is a common task in Python programming. In this blog post, we’ll explore different code examples that demonstrate how to remove an element from a list efficiently.

Example 1:

fruits = ['apple', 'banana', 'orange', 'kiwi']
fruits.remove('banana')
print(fruits)

Output: [‘apple’, ‘orange’, ‘kiwi’]

Example 2:

numbers = [10, 20, 30, 40, 50]
numbers.remove(30)
print(numbers)

Output: [10, 20, 40, 50]