1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 05:21:43 +02:00

Add dictionaries conten (#6365)

* Update dictionaries@bc9CL_HMT-R6nXO1eR-gP.md

* Update src/data/roadmaps/python/content/dictionaries@bc9CL_HMT-R6nXO1eR-gP.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Atharva Warang
2024-08-05 14:25:05 +05:30
committed by GitHub
parent 9c18500cc4
commit 08c68d8fae

View File

@@ -1 +1,7 @@
# Dictionaries
# Dictionaries
In Python, a dictionary is a built-in data type that allows you to store key-value pairs. Each key in the dictionary is unique, and each key is associated with a value. Dictionaries are unordered collections, meaning the order of items is not guaranteed.
Learn more from the following resources:
- [@article@W3 Schools - Dictionaries](https://www.w3schools.com/python/python_dictionaries.asp)