About 235,000,000 results
Open links in new tab
  1. Download Python | Python.org

    Python was created in the early 1990s by Guido van Rossum at Stichting Mathematisch Centrum in the Netherlands as a successor of a language called ABC. Guido remains Python’s principal …

  2. Python Dictionary get () Method - GeeksforGeeks

    Jul 23, 2025 · Python Dictionary get () Method returns the value for the given key if present in the dictionary. If not, then it will return None (if get () is used with only one argument).

  3. Python Dictionary get () Method - W3Schools

    Definition and Usage The get() method returns the value of the item with the specified key.

  4. Python Dictionary get () - Programiz

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

  5. Understanding .get() method in Python - Stack Overflow

    The get method of a dict (like for example characters) works just like indexing the dict, except that, if the key is missing, instead of raising a KeyError it returns the default value (if you call .get …

  6. Python dictionary get () Method - Online Tutorials Library

    The Python dictionary get () method is used to retrieve the value corresponding to the specified key. This method accept keys and values, where value is optional.

  7. get — Python Function Reference

    A comprehensive guide to Python functions, with examples. Find out how the get function works in Python. Return the value for key if key is in the dictionary, else default.