About 1,570,000 results
Open links in new tab
  1. Python Dictionary items () - Programiz

    In this tutorial, we will learn about the Python Dictionary items () method with the help of examples.

  2. Python Dictionary items () Method - W3Schools

    Definition and Usage The items() method returns a view object. The view object contains the key-value pairs of the dictionary, as tuples in a list. The view object will reflect any changes done to …

  3. Item – Minecraft Wiki

    As of 1.20, there are a total of 1,643 items in the game. Some items, when used, place a block (Item block) or entity (minecart, spawn eggs, etc.) version of themselves into the game world. …

  4. Python Dictionary items () method - GeeksforGeeks

    Jul 11, 2025 · items () method in Python returns a view object that contains all the key-value pairs in a dictionary as tuples. This view object updates dynamically if the dictionary is modified.

  5. Python's `items()` Method: A Comprehensive Guide - CodeRivers

    Jan 26, 2025 · The items() method provides an easy way to access both the keys and their corresponding values in a dictionary simultaneously. This blog post will explore the …

  6. items () in Python - Dictionary Methods with Examples

    The items() method in Python is a dictionary method that returns a view object that displays a list of tuple pairs (key, value) in the dictionary. This method is used to access all key-value pairs in …

  7. 5 Examples of Python Dict items () method - AskPython

    May 20, 2020 · The Python dict.items () method is used to display the data elements of the dict in the form of a list of tuple pairs. If a dict is empty, the dict.items () method returns an empty list.

  8. Python Dictionary items ()

    In this example, we will use dictionary items () method to iterate over the items of the dictionary in a For loop. During each iteration, we shall access the key and value from the item, and print …

  9. items (), keys () and values () methods in Python dictionary

    The items() method is useful when it comes to iterating over the dictionary items. Remember that iterating over a dictionary only yields its keys, so using the items() method allows you to …

  10. Python | Dictionaries | .items () | Codecademy

    May 23, 2022 · The .items() method of a Python dictionary returns a list of tuples for each key-value pair in a dictionary. It takes no arguments.