🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to Python Notes
Topic #39

Remove List Items


Remove Specified Item

The remove() method removes the specified item.

Example

thislist = ["apple", "banana", "cherry"]
thislist.remove("banana")
print(thislist)

If there are more than one item with the specified value, the remove() method removes the first occurrence:

Example

thislist = ["apple", "banana", "cherry", "banana", "kiwi"]
thislist.remove("banana")
print(thislist)

Remove Specified Index

The pop() method removes the specified index.

Example

thislist = ["apple", "banana", "cherry"]
thislist.pop(1)
print(thislist)

If you do not specify the index, the pop() method removes the last item.

Example

thislist = ["apple", "banana", "cherry"]
thislist.pop()
print(thislist)

The del keyword also removes the specified index:

Example

thislist = ["apple", "banana", "cherry"]
  del
thislist[0]
print(thislist)

The del keyword can also delete the list completely.

Example

thislist = ["apple", "banana", "cherry"]
  del
thislist

Clear the List

The clear() method empties the list.

The list still remains, but it has no content.

Example

thislist = ["apple", "banana", "cherry"]
  thislist.clear()
print(thislist)

Want to go beyond the notes?

Join CodingNow 2.0's Python course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Remove List Items – FAQs

Quick answers about learning Remove List Items in Python.

This free note from CodingNow 2.0 explains Remove List Items in Python — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every Python topic on CodingNow 2.0, including Remove List Items, is 100% free with no signup required.
With focused practice, most students grasp Remove List Items in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now