diff --git a/content/roadmaps/108-python/content/100-python-basics/105-lists-tuples-sets-dictionaries.md b/content/roadmaps/108-python/content/100-python-basics/105-lists-tuples-sets-dictionaries.md index 79a3df924..edaf1f31b 100644 --- a/content/roadmaps/108-python/content/100-python-basics/105-lists-tuples-sets-dictionaries.md +++ b/content/roadmaps/108-python/content/100-python-basics/105-lists-tuples-sets-dictionaries.md @@ -6,7 +6,7 @@ **Set:** A Set is an unordered collection data type that is iterable, mutable, and has no duplicate elements. Python’s set class represents the mathematical notion of a set. -**Dictionary:** in Python is an ordered (since Py 3.7) [unordered (Py 3.6 & prior)] collection of data values, used to store data values like a map, which, unlike other Data Types that hold only a single value as an element, Dictionary holds key:value pair. Key-value is provided in the dictionary to make it more optimized. +**Dictionary:** In python, Dictionary is an ordered (since Py 3.7) [unordered (Py 3.6 & prior)] collection of data values, used to store data values like a map, which, unlike other Data Types that hold only a single value as an element, Dictionary holds key:value pair. Key-value is provided in the dictionary to make it more optimized. Free Content Difference Between List, Tuple, Set and Dictionary in Python