1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-01-18 06:38:34 +01:00

Fixes minor semantic error (#2445)

This commit is contained in:
Arya Singh 2022-10-13 03:15:38 +05:30 committed by GitHub
parent 3229cf4be9
commit e6f810e1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@
**Set:** A Set is an unordered collection data type that is iterable, mutable, and has no duplicate elements. Pythons 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.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='red' badgeText='Watch' href='https://www.youtube.com/watch?v=n0krwG38SHI'>Difference Between List, Tuple, Set and Dictionary in Python</BadgeLink>