Python .remove()

design2461360801's avatar
Published May 5, 2021Updated Oct 13, 2023
Contribute to Docs

The .remove() method removes an item from a list by passing in the value of the item to be removed as an argument.

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Machine Learning Data Scientists solve problems at scale, make predictions, find patterns, and more! They use Python, SQL, and algorithms.
    • Includes 27 Courses
    • With Professional Certification
    • Beginner Friendly.
      95 hours

Syntax

list.remove(item)

In the case where two or more elements in the list have the same value, the first occurrence of the element is removed.

Example

inventory = ['⚽', '🏀', '⚾️', '🎾', '🏐']
inventory.remove('⚾️')
print(inventory)
# Output: ['⚽', '🏀', '🎾', '🏐']

Codebyte Example

To remove the first occurrence of 'eggs':

Code
Output
Loading...

All contributors

Contribute to Docs

Learn Python on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Machine Learning Data Scientists solve problems at scale, make predictions, find patterns, and more! They use Python, SQL, and algorithms.
    • Includes 27 Courses
    • With Professional Certification
    • Beginner Friendly.
      95 hours