About 561,000 results
Open links in new tab
  1. 5. Data Structures — Python 3.14.2 documentation

    1 day ago · Another useful data type built into Python is the dictionary (see Mapping Types — dict). Dictionaries are sometimes found in other languages as “associative memories” or …

  2. Python Dictionaries - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

  3. Dictionaries in Python – Real Python

    Dec 16, 2024 · In this tutorial, you’ll explore how to create dictionaries using literals and the dict() constructor, as well as how to use Python’s operators and built-in functions to manipulate them.

  4. Python Dictionary - GeeksforGeeks

    Sep 20, 2025 · Python dictionary is a data structure that stores the value in key: value pairs. Values in a dictionary can be of any data type and can be duplicated, whereas keys can't be …

  5. Python Dictionary: Guide to Work with Dictionaries in Python

    Learn how to create, modify, and use dictionaries in Python. This tutorial covers all dictionary operations with practical examples for beginners and advanced users.

  6. Python Dictionary: How To Create And Use, With Examples

    Oct 22, 2024 · Learn everything there is to know about the Python dictionary, like how to create one, how to add elements to it, and how to retrieve them.

  7. Python Dictionary (With Examples) - Programiz

    A Python dictionary is a collection of items, similar to lists and tuples. However, unlike lists and tuples, each item in a dictionary is a key-value pair (consisting of a key and a value).

  8. Dictionaries - OpenPython

    Let’s create a simple dictionary, then try updating and expanding it. You’ll get a feel for how flexible dictionaries can be in your code. Dictionaries are one of Python’s most powerful data …

  9. Dictionaries — Interactive Python Course

    A dictionary in Python is a collection of key-value pairs. You can think of a dictionary as a phone book, where people's names (keys) are associated with their phone numbers (values).

  10. Python dict Function - Complete Guide - ZetCode

    Apr 11, 2025 · This comprehensive guide explores Python's dict function, which creates dictionary objects. We'll cover creation methods, manipulation techniques, and practical examples of …