Python .popitem()

StevenSwiniarski's avatar
Published May 23, 2022
Contribute to Docs

The .popitem() method of a Python dictionary returns the last inserted key-value pair from a dictionary as a tuple and removes the entry. It takes no arguments.

Note: Prior to Python version 3.7, this method would remove a random item from the dictionary.

  • 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
  • Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.
    • With Certificate
    • Beginner Friendly.
      24 hours

Syntax

dictionary.popitem()

Codebyte Example

The following example creates a dictionary, adds an item, then uses .popitem() to remove it:

Code
Output

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
  • Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.
    • With Certificate
    • Beginner Friendly.
      24 hours