DIFFERENCE BETWEEN LISTS, DICTIONARIES AND SETS IN PYTHON code example
Example: difference between dictionary and sets in python
# Set: A Set is an unordered collection data type that is iterable, mutable and has no duplicate elements. ... Dictionary: in Python is an unordered collection of data values, used to store data values like a map, which unlike other Data Types that hold only single value as an element, Dictionary holds key:value pair.