Skip to content

Commit 7ab3f75

Browse files
chore: update roadmap content json (kamranahmedse#8096)
Co-authored-by: kamranahmedse <[email protected]>
1 parent bcf4126 commit 7ab3f75

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

public/roadmap-content/python.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,11 @@
185185
"url": "https://thenewstack.io/python-for-beginners-when-and-how-to-use-tuples/",
186186
"type": "article"
187187
},
188+
{
189+
"title": "Python's tuple Data Type: A Deep Dive With Examples",
190+
"url": "https://realpython.com/python-tuple/#getting-started-with-pythons-tuple-data-type",
191+
"type": "article"
192+
},
188193
{
189194
"title": "why are Tuples even a thing?",
190195
"url": "https://www.youtube.com/watch?v=fR_D_KIAYrE",
@@ -215,7 +220,7 @@
215220
},
216221
"bc9CL_HMT-R6nXO1eR-gP": {
217222
"title": "Dictionaries",
218-
"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:",
223+
"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:",
219224
"links": [
220225
{
221226
"title": "Dictionaries in Python",
@@ -226,6 +231,11 @@
226231
"title": "W3 Schools - Dictionaries",
227232
"url": "https://www.w3schools.com/python/python_dictionaries.asp",
228233
"type": "article"
234+
},
235+
{
236+
"title": "Dictionaries in Python",
237+
"url": "https://realpython.com/python-dicts/",
238+
"type": "article"
229239
}
230240
]
231241
},

0 commit comments

Comments
 (0)