PYTHON

The Python List pop() Method: Syntax, Usage, and Examples

In Python, pop() is a list method that removes and returns an element of a list. With an argument, pop() removes and returns the item at the specified index (starting from 0). Without an argument, pop() removes and returns the last item of the list.

Quick Answer: How to Use the pop() Method in Python

The .pop() method removes an item from a list and returns it. Its behavior depends on whether you provide an index:

  • list.pop() (no index): Removes and returns the last item from the list.
  • list.pop(index): Removes and returns the item at the specified index.

This method modifies the original list in-place.

Example:

fruits = ['apple', 'banana', 'cherry', 'date']

# 1. Pop the last item (no index provided)
last_fruit = fruits.pop()
print(f"Popped item: {last_fruit}")
# Outputs: Popped item: date
print(f"List is now: {fruits}")
# Outputs: List is now: ['apple', 'banana', 'cherry']

# 2. Pop the item at index 0
first_fruit = fruits.pop(0)
print(f"Popped item: {first_fruit}")
# Outputs: Popped item: apple
print(f"List is now: {fruits}")
# Outputs: List is now: ['banana', 'cherry']

Using .pop() on an empty list or with an invalid index will raise an IndexError.

How to Use pop() in Python Lists

The syntax of using the pop() method in the Python lists is simple and straightforward. Here’s a basic example:

fruits = ['apple', 'banana', 'cherry']

Removing an item at a specific position (index 0 in this case)

first_fruit = fruits.pop(0) # 'apple' is removed and returned print(first_fruit) # Outputs: apple

Removing the last item

last_fruit = fruits.pop() # 'cherry' is removed and returned print(last_fruit) # Outputs: cherry


The argument for the parameter index is optional. Without an argument, the default index is -1, pointing to the last element in the list.

## **When to Use pop() in Python Lists**

### Stack Data Structure

A stack is a classic use case for `pop()` because it removes the last added element first (last in, first out). You can also use the pop() method with other built-in functions like append() to manage elements dynamically in your code.

```python
stack = [1, 2, 3, 4]
while stack:
	top_item = stack.pop()
	print(f"Processing item: {top_item}")

Changing Lists

In Python, pop() is also ideal for scenarios where you need iterate through a list while removing items. For example, consider task scheduling or processing a queue of actions.

tasks = ["write", "debug", "test"]
while tasks:
	current_task = tasks.pop(0)  # Remove and return the first task
	print(f"Executing {current_task}")

Retrieving and Removing Specific Items

You can use the pop() method to remove a specific item from a list and use it right away. This flexibility makes it ideal for beginner programmers learning to manipulate lists dynamically.

deck = ["Ace", "King", "Queen", "Jack"]
drawn_card = deck.pop(2)  # Removes and returns "Queen"
print(f"You drew a {drawn_card}.")

Returning Values While Modifying Lists

Using pop() is useful for cases where both the return value and the updated list are required. For instance:

numbers = [10, 20, 30, 40]
removed = numbers.pop(1)  # Removes '20'
print(f"Removed element: {removed}")
print(f"Updated list: {numbers}")

Examples of Using pop() in Python Lists

Undo Functionality

In applications that require an undo feature, pop() can remove the last action from a list of actions.

actions = ["type word", "bold text", "insert image"]
last_action = actions.pop()
print(f"Undoing action: {last_action}")

Game Development

In game development, pop() can manage game objects, such as removing a player from a list of active players when they lose or quit.

players = ["Alice", "Bob", "Cara", "Dean"]
player = players.pop(1) # Bob left the game
print(f"{player} left the game.")

Data Processing

In data processing scripts, pop() can help in cleaning datasets by removing unwanted elements. A common use case might be removing the header from a list of data rows.

data = [["Header1", "Header2"], [1, 2], [3, 4]]
header = data.pop(0)  # Remove the header row
print(f"Data without header: {data}")

Working with Tuples and Lists

Although tuples are immutable, you can combine them with lists for scenarios where some data needs to remain static while others are processed dynamically using pop().

static_data = (1, 2, 3)  # Immutable tuple
dynamic_data = [4, 5, 6]  # Mutable list

removed_item = dynamic_data.pop()  # Removes and returns '6'
print(f"Tuple: {static_data}, Updated List: {dynamic_data}")

Caveats of Using pop() in Python Lists

IndexError

While the pop() method is highly useful, it's important to take care when you use the method. Using pop() on an empty list or with an out-of-range index results in an IndexError (pop() index out of range). To avoid such errors, make sure that the list is not empty and that the specified index is within the list's bounds beforehand.

# Attempting to pop from an empty list
empty_list = []
try:
    empty_list.pop()
except IndexError as e:
    print(f"Error: {e}")  # Error: pop from empty list

# Attempting to pop with an out-of-range index
numbers = [1, 2, 3]
try:
    numbers.pop(5)
except IndexError as e:
    print(f"Error: {e}")  # Error: pop index out of range

Performance

In Python, popping from a list requires shifting all other elements in the background. Therefore, shifting the elements of a large list can create significant performance issues.

# Attempting to pop from an empty list
empty_list = []
try:
    empty_list.pop()
except IndexError as e:
    print(f"Error: {e}")  # Error: pop from empty list

# Attempting to pop with an out-of-range index
numbers = [1, 2, 3]
try:
    numbers.pop(5)
except IndexError as e:
    print(f"Error: {e}")  # Error: pop index out of range

Consider using alternative data structures or methods for managing elements, especially for operations at the start of the list. Using a deque (double-ended queue) can be more efficient for removing elements at both ends of a collection.

from collections import deque
efficient_list = deque(range(1000000))

start_time = time.time()
efficient_list.popleft()  # Optimized for removing the first element
end_time = time.time()

print(f"Time taken with deque: {end_time - start_time} seconds")

Maintaining Integrity

The pop() method modifies the list, affecting the list's state. This can lead to unintended side effects when multiple parts of your code interact with the same list. To maintain the original list's integrity while still removing elements, consider working with a copy of the list.

# Directly modifying the original list
original_list = [1, 2, 3, 4]
popped_element = original_list.pop(2)  # Removes '3'
print(f"Modified Original List: {original_list}")  # Output: [1, 2, 4]

# Preserving the original list by working with a copy
original_list = [1, 2, 3, 4]
list_copy = original_list.copy()  # Creating a shallow copy
popped_element = list_copy.pop(2)  # Removes '3' from the copy
print(f"Original List remains unchanged: {original_list}")  # Output: [1, 2, 3, 4]

Key Takeaways for the Python List pop() Method

  • Modifies the List In-Place: .pop() is a "mutating" method; it changes the original list it is called on.
  • Returns the Removed Item: Unlike .remove() which returns None, .pop() returns the element that was removed, allowing you to store it in another variable.
  • Defaults to the Last Item: If you call .pop() with no index, it will remove and return the last item in the list, which is very efficient.
  • Removes by Index: When you provide an integer argument, .pop() removes the item at that specific index.
  • Raises an IndexError: If you try to .pop() from an empty list or use an index that is out of range, Python will raise an IndexError.
Learn Python for Free
Start learning now
button icon
To advance beyond this tutorial and learn Python by doing, try the interactive experience of Mimo. Whether you're starting from scratch or brushing up your coding skills, Mimo helps you take your coding journey above and beyond.

Sign up or download Mimo from the App Store or Google Play to enhance your programming skills and prepare for a career in tech.

You can code, too.

© 2025 Mimo GmbH

Reach your coding goals faster