From 08c68d8fae623792110fabae5a1404ddaad1d794 Mon Sep 17 00:00:00 2001 From: Atharva Warang <112690557+HdJex@users.noreply.github.com> Date: Mon, 5 Aug 2024 14:25:05 +0530 Subject: [PATCH] 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 --- .../python/content/dictionaries@bc9CL_HMT-R6nXO1eR-gP.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/python/content/dictionaries@bc9CL_HMT-R6nXO1eR-gP.md b/src/data/roadmaps/python/content/dictionaries@bc9CL_HMT-R6nXO1eR-gP.md index 649d7e345..4140a85be 100644 --- a/src/data/roadmaps/python/content/dictionaries@bc9CL_HMT-R6nXO1eR-gP.md +++ b/src/data/roadmaps/python/content/dictionaries@bc9CL_HMT-R6nXO1eR-gP.md @@ -1 +1,7 @@ -# Dictionaries \ No newline at end of file +# 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)