From 7ab3f758fd89dabbf64a23955fd7df517ad413e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Jan 2025 06:33:16 +0600 Subject: [PATCH] chore: update roadmap content json (#8096) Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com> --- public/roadmap-content/python.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/public/roadmap-content/python.json b/public/roadmap-content/python.json index e1f0f8b97..ea2ef8a83 100644 --- a/public/roadmap-content/python.json +++ b/public/roadmap-content/python.json @@ -185,6 +185,11 @@ "url": "https://thenewstack.io/python-for-beginners-when-and-how-to-use-tuples/", "type": "article" }, + { + "title": "Python's tuple Data Type: A Deep Dive With Examples", + "url": "https://realpython.com/python-tuple/#getting-started-with-pythons-tuple-data-type", + "type": "article" + }, { "title": "why are Tuples even a thing?", "url": "https://www.youtube.com/watch?v=fR_D_KIAYrE", @@ -215,7 +220,7 @@ }, "bc9CL_HMT-R6nXO1eR-gP": { "title": "Dictionaries", - "description": "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.\n\nLearn more from the following resources:", + "description": "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.\n\nLearn more from the following resources:", "links": [ { "title": "Dictionaries in Python", @@ -226,6 +231,11 @@ "title": "W3 Schools - Dictionaries", "url": "https://www.w3schools.com/python/python_dictionaries.asp", "type": "article" + }, + { + "title": "Dictionaries in Python", + "url": "https://realpython.com/python-dicts/", + "type": "article" } ] },