📄️ List
Python lists are a versatile and commonly used data structure that can hold an ordered collection of items (of any data type)
📄️ Tuple
A tuple in Python is an immutable and ordered collection of items. It is similar to a list, but tuples cannot be modified after creation. Here's a detailed explanation with examples:
📄️ Set
A set in Python is an unordered collection of unique elements. Sets are useful when you want to store values without duplicates, and they provide efficient operations like membership testing, union, intersection, and difference.
📄️ Dictionary
In Python, a dictionary (or dict) is an unordered collection of items. Each item is a key-value pair, where the key is unique and used to access the corresponding value. Dictionaries are mutable, meaning you can change their contents.