From 21ed4a647fc32562770332fffe27566933865491 Mon Sep 17 00:00:00 2001 From: cepjant <44339865+cepjant@users.noreply.github.com> Date: Thu, 23 Jan 2025 02:09:44 +1000 Subject: [PATCH] fix: update topic content --- .../python/content/dictionaries@bc9CL_HMT-R6nXO1eR-gP.md | 2 +- 1 file changed, 1 insertion(+), 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 4cebe1e0a..ff91f2cb2 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,6 +1,6 @@ # 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. +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. Starting from Python 3.7, dictionaries maintain the order of items as they were added. Learn more from the following resources: